Computer Science, asked by rishimunjal44, 4 months ago

What will be the output of following program: a =

{ }

a[1] = 1

a['1'] = 2

a[1.0] = 4

print(a)​

Answers

Answered by anujbroo1234
0

Answer:

>>> a={1:"A",2:"B",3:"C"}

>>> del a

Similar questions