Computer Science, asked by PranitaKumari, 5 months ago

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 AyushSingh2003
3

Answer:

It should be option (b) in my opinion

Similar questions