1.

What is the output of the below program? def sum(*args): '''Function returns the sum of all values''' r = 0 for i in args: r += i return r print sum.__doc__ print sum(1, 2, 3) print sum(1, 2, 3, 4, 5)

A. 6 15
B. 6 100
C. 123 12345
D. None of the mentioned
Answer» B. 6 100


Discussion

No Comment Found