This is my program.I can not print key 1 and lenght is showing 3 .What is the problem.
pairs = {
1: "apple",
"orange": [2,3,4],
True : False,
12: "True",
}
#key Call
print(pairs[1])
#Dictionary len() check
print(len(pairs))
The output I am getting .Please help anyone.
False
3