pythonのkeywordモジュールの使用例の分析
1683 ワード
この例ではpythonのkeywordモジュールの使い方について説明します.皆さんの参考にしてください.具体的には以下の通りです.
pythonのキーワードリストを取得します.
文字列がpythonのキーワードかどうかを判断する
ここで述べたことが皆さんのPythonプログラム設計に役立つことを願っています.
Help on module keyword:
NAME
keyword - Keywords (from "graminit.c")
FILE
/usr/lib64/python2.6/keyword.py
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__(...)
x.__contains__(y) <==> y in x.
DATA
__all__ = ['iskeyword', 'kwlist']
kwlist = ['and', 'as', 'assert', 'break', 'class', 'continue', 'def', ...
pythonのキーワードリストを取得します.
>>> keyword.kwlist
['and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'exec', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'not', 'or', 'pass', 'print', 'raise', 'return', 'try', 'while', 'with', 'yield']
文字列がpythonのキーワードかどうかを判断する
>>> keyword.iskeyword('and')
True
>>>
>>> keyword.iskeyword('has')
False
ここで述べたことが皆さんのPythonプログラム設計に役立つことを願っています.