Write the output of the following code :
A = {1 : "One", 2 : "Two", 3 : "Three"}
B = {'A' : "Apple", 'B' : "Bat", 'C' : "Cat", 'D' : "Doll"}
print(A.get(4,"Key Not Found"))1.KeyError
2.Key Not Found
3.None
4.Syntax Error
Posted Date:-2021-12-06 10:35:02