Q. What will be the output of the following code snippet?
Code:
def tester(**kwargs):
for key, value in kwargs.items():
print(key, value, end = " ")
tester(Sunday = 1, Monday = 2, Tuesday = 3, Wednesday = 4)
β
Correct Answer: (A)
Sunday 1 Monday 2 Tuesday 3 Wednesday 4