Q. What will be the output of the following code snippet?
Code:
def tester(*argv):
for arg in argv:
print(arg, end = ' ')
tester('Sunday', 'Monday', 'Tuesday', 'Wednesday')
β
Correct Answer: (C)
Sunday Monday Tuesday Wednesday