예약어나 파이썬 내부에 구현된 함수 및 메서드 이름으로 사용되는 단어를 변수로 지정하는 실수를 종종 하게 되는데, 사전에 정의된 단어들은 변수명으로 사용하지 않도록 주의한다.
# 변수명을 정할 때 사용하지 말아야 하는 예약어 목록 from keyword import kwlist print(kwlist)
실행 결과
['False', 'None', 'True', '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']