InterviewSolution
Saved Bookmarks
| 1. |
Question 11:Find the output of the following program:dictionary = {'GFG' : 'geeksforgeeks.org','google' : 'google.com','facebook' : 'facebook.com'}del dictionary['google'];for key, values in dictionary.items():print(key, end=" ")dictionary.clear();for key, values in dictionary.items():print(key)del dictionary;for key, values in dictionary.items():print(key)(A) Both B and D(B) GFG facebook(C) facebook GFG(D) NameError: name ‘dictionary’ is not defined |
| Answer» | |