作成日:
辞書の要素の存在確認
inを使用します。
items = {"one": 1, "two": 2, "three": 3}
print("one" in items) # True
print("zero" in items) # False
作成日:
inを使用します。
items = {"one": 1, "two": 2, "three": 3}
print("one" in items) # True
print("zero" in items) # False