Computer Science, asked by ritu2462, 7 months ago

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 Rocky195
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
Math, 10 months ago