Write the output of the following:
A = {1 : "One", 2 : "Two", 3 : "Three"}
B = {'A' : "Apple", 'B' : "Bat", 'C' : "Cat", 'D' : "Doll"}
for i in A:
print(i)1.1 2 3
2.1 2 3
3.{1 : “One”, 2 : “Two”, 3 : “Three”}
4.None of the above
Posted Date:-2021-12-06 10:39:24