Python keyword 模块 -- 学习笔记

时间:2022-03-26 04:25:23

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