728x90
List of Keywords in Python
Keywords list
>>> import keyword
>>> print(keyword.kwlist)
['False', 'None', 'True', '__peg_parser__', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
Check if "def" is in the keywords list
>>> 'def' in dic
True
728x90
'기타' 카테고리의 다른 글
[기타] Mac에서 IPSec VPN(VPN 클라이언트) 구성 (0) | 2022.07.25 |
---|---|
[기타] slack 무료 플랜 변경 사항 (0) | 2022.07.20 |
vscode 단축키(keyboard shortcuts) (0) | 2022.07.20 |
SRE(사이트 신뢰성 엔지니어링)란? (0) | 2022.07.18 |
애플 맥북 실리콘 M1에서 도커 컨테이너 실행 시 오류 (0) | 2022.07.14 |