책 내용에 대한 무단배포 방지를 위해 최소한으로 정리
예약어 피하기
>>> import keyword
>>> keyword.kwlist
['False', 'None', 'True', 'and', 'as', 'assert', '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']
예약어를 변수명으로 사용시
>>> abs = 1
>>> abs(-3)
Traceback (most recent call last):
File "<pyshell#10>", line 1, in <module>
abs(-3)
TypeError: 'int' object is not callable
Comments