Python dictionary key exist
1. has_key ( python 2에서만 사용가능 )
dict = {"hello": "world"}
if dict.has_key("hello): # True
- python2에서 사용가능.
- python3에서 사용시 AttributeError: 'dict' object has no attribute 'has_key' 에러를 확인하실 수 있습니다.
2. in
dict = {'hello' : 'wolrd'}
if 'hello' in dict: # True
3. get
dict = {'hello' : 'wolrd'}
if dict.get('hello'): # True
참조
[python 3.0]: https://docs.python.org/3.1/whatsnew/3.0.html#builtins
728x90
'Programing Language > Python' 카테고리의 다른 글
[Python] xlsxwriter 관련 (0) | 2023.02.25 |
---|---|
[Python] AttributeError: module 'datetime' has no attribute 'now' (0) | 2023.02.21 |
[Python] 타입 비교 (0) | 2023.02.21 |
[Python] requirements.txt 생성 및 설치 (0) | 2023.02.20 |
[Python] 개발환경 (pyenv, pyenv-virtualenv) (0) | 2023.02.17 |
댓글