1.

Question 15:Find the output of the following program:temp = {'GFG' : 1,'Facebook' : 2,'Google' : 3}for (key, values) in temp.items():print(key, values, end = " ")(A) Google 3 GFG 1 Facebook 2(B) Facebook 2 GFG 1 Google 3(C) Facebook 2 Google 3 GFG 1(D) Any of the above

Answer»


Discussion

No Comment Found

Related InterviewSolutions