본문 바로가기

Developer/Python

[Python] 딕셔너리 키 값 존재여부 확인

Python2 를 사용하는 경우,

fruit_dict = {"apple": 3, "grape":5, "orange": 1}

# key value가 apple이 존재할 경우, True
# else: False
print(fruit_dict.has_key("apple"))

 

Python3 를 사용하는 경우,

fruit_dict = {"apple": 3, "grape":5, "orange": 1}

# apple에 해당하는 value 출력
print(fruit_dict.get("apple"))

 

fruit_dict = {"apple": 3, "grape":5, "orange": 1}

if fruit_dict["apple"]:
    print("apple exists")

 

fruit_dict = {"apple": 3, "grape":5, "orange": 1}

if "apple" in fruit_dict:
    print("apple exists")