Python keyword 模塊的學習筆記
keyword 的幫助文檔
>>> import keyword >>> help(keyword) Help on module keyword: NAME keyword - Keywords (from "graminit.c") DESCRIPTION This file is automatically generated; please don't muck it up! To update the symbols in this file, 'cd' to the top directory of the python source tree after building the interpreter and run: ./python Lib/keyword.py FUNCTIONS iskeyword = __contains__(...) method of builtins.frozenset instance x.__contains__(y) <==> y in x. DATA __all__ = ['iskeyword', 'kwlist'] kwlist = ['False', 'None', 'True', 'and', 'as', 'assert', 'break', 'cl... FILE e:\program files\python34\lib\keyword.py
kwlist -- Python 關鍵字列表
>>> 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']
iskeyword -- 判斷字元串是否是 Python 關鍵字
>>> keyword.iskeyword('and') True >>> keyword.iskeyword('has') False