Write the output of the following code :
a={'a' : "Apple", 'b' : "Banana" , 'c' : "Cat"}
a['a']="Anar"
print(a)1.{‘a’: ‘Anar’, ‘b’: ‘Banana’, ‘c’: ‘Cat’}
2.Error
3.{‘a’ : “Apple, ‘a’: ‘Anar’, ‘b’: ‘Banana’, ‘c’: ‘Cat’}
4.None of the above
Posted Date:-2021-12-06 10:26:07