InterviewSolution
Saved Bookmarks
| 1. |
Question 19:Find the output of the following program:dictionary ={1:"geek", 2:"for", 3:"geeks"}del dictionary(A) del deletes the entire dictionary(B) del doesn’t exist for the dictionary(C) del deletes the keys in the dictionary(D) del deletes the values in the dictionary |
| Answer» | |