Report Bug
Qus :

What is the output of the following code ?

def add(a, b):
       return a+5, b+5
result = add(3,2)
print(result)

Qus

निम्नलिखित कोड का परिणाम क्या है ?

def add(a, b):
       return a+5, b+5
result = add(3,2)
print(result)


A. 15
B. 8
C. (8,7)
D. Error


Solution
C. (8,7)






Report Bug