InterviewSolution
Saved Bookmarks
| 1. |
Question 21:Find the output of the following program:test = {1:'A', 2:'B', 3:'C'}del test[1]test[1] = 'D'del test[2]print(len(test))(A) Error(B) 0(C) 1(D) 2 |
| Answer» | |