πŸ“Š Python
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)
  • (A) Sunday 1 Monday 2 Tuesday 3 Wednesday 4
  • (B) Sunday 1
  • (C) Wednesday 4
  • (D) None of the above
πŸ’¬ Discuss
βœ… Correct Answer: (A) Sunday 1 Monday 2 Tuesday 3 Wednesday 4

You must be Logged in to update hint/solution

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
415
Total Visits
πŸ“½οΈ
4 y ago
Published
πŸŽ–οΈ
Akash Lawaniya
Publisher
πŸ“ˆ
80%
Success Rate