Q&A Discussions
pairs = {1: "apple",
"orange": [2, 3, 4],
True: False,
None: "True",
}
print(pairs.get("orange"))
print(pairs.get(1))
print(pairs.get(12345, "not in dictionary"))
the output is
[2, 3, 4]
False
not in dictionary
why is print(pairs.get(13345,"not in dictionary")) giving the output not in dictionary.pls I nid explanation
2 Votes
4 AnswersHot today
Need a personal tutor
1 Votes
Fix code
0 Votes
..
1 Votes
Software to write and run codes
0 Votes
Add lua
0 Votes
Summary please??
0 Votes