What is the output of the add() function call
def add(a, b):
return a+5, b+5
result = add(3, 2)
print(result)
a)Syntax Error
b)(8,7)
c)15
d)8
Answers
Answered by
3
Answer:
It should be option (b) in my opinion
Similar questions