What is the output of the below program? (give
Answer in comments.
def myfunc(a, b=5, c=10):
print('a is', a, 'and b is', b, 'and c is', c)
myfunc(3,7)
myfunc(25, C = 24)
myfunc(c = 50, a = 100)
Answers
Answered by
4
What is the output of the below program? (give
Answer in comments.
def myfunc(a, b=5, c=10):
print('a is', a, 'and b is', b, 'and c is', c)
myfunc(3,7)
myfunc(25, C = 24)
myfunc(c = 50, a = 100)
Similar questions