227k views
5 votes
The main part of your program has the following line of code.

answer = difference(30,5)
Which function finds the difference of 30 and 5 to return 25.


def Subtract(numA, numB):
return numB - numA
def Subtract(numA, numB): return numB - numA

def subtract(numA, numB):
return numA - numB
def subtract(numA, numB): return numA - numB

def subtract(numA, numB):
return numB - numA
def subtract(numA, numB): return numB - numA

def Subtract(numA, numB):
return numA - numB

User Sam Shiles
by
4.3k points

1 Answer

2 votes

Answer:

def subtract(numA, numB):

return numA - numB

User Holzben
by
4.3k points