키워드 (Keywords) 키워드는 Python에서 고유한 의미를 갖는 단어로 식별자로 사용할 수 없으며 각 키워드는 프로그램에서 특별한 기능을 수행합니다. import keyword # keyword 모듈을 가져옵니다. print(keyword.kwlist) # keyword의 목록을 출력합니다. Python의 키워드 목록은 위와 같이 작성하여 확인할 수 있습니다. ['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'i..