Tangani Dict Python Kunci Invalid

myDict = {0: 'Hello', 1: 'World'}
0 in myDict
# >>> True
2 in myDict
# >>> False
Anxious Alligator