1.

Question 24:Find the output of the following program:dictionary = {1:'1', 2:'2', 3:'3'}del dictionary[1]dictionary[1] = '10'del dictionary[2]print (len(dictionary) )(A) 1(B) 2(C) 3(D) 4

Answer»


Discussion

No Comment Found

Related InterviewSolutions