The following function is given: def add(a, b): result = a + b return What the function returns with the following call:

Questions & AnswersCategory: PythonThe following function is given: def add(a, b): result = a + b return What the function returns with the following call:
Geek Boy Staff asked 2 years ago

The following function is given:

def add(a, b):

    result = a + b

    return

What the function returns with the following call:

add(3, 5)

a. ’35’
b. None
c. 35
d. 8