0
how would I solve this?
Drag and drop from the options below to print "Yes", if the key 112 is present in the dictionary named "pairs". if : print("Yes") if in 112 print not pairs
2 Answers
+ 1
if 112 in pairs:
print("yes")
else:
print("not pairs")
+ 1
if 112 in Paris