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")
'Developer > Python' 카테고리의 다른 글
[Python] 이벤트 루프 (0) | 2021.01.17 |
---|---|
[Python] Python에서 fpdf 사용하기 (0) | 2021.01.05 |
[Python] 파이썬 이벤트 루프 (0) | 2020.12.29 |
[Python] 파이썬에서 IP 버전 확인하기 (0) | 2020.07.30 |
[Python] 파이썬에서 텔넷(telnet) 사용하기 (1) | 2020.07.29 |