Python中关键字有多少个?

Python中关键词有多少个?Python中关键词目前有31个,可以利用Python的内置的keyword模块进行输出查看。

图片[1]-Python中关键字有多少个?-uusu优素-乐高,模型,3d打印,编程

keyword模块

Helponmodulekeyword:
NAME
keyword-Keywords(from"graminit.c")
FILE
/usr/lib64/python2.6/keyword.py
DESCRIPTION
Thisfileisautomaticallygenerated;pleasedon'tmuckitup!
Toupdatethesymbolsinthisfile,'cd'tothetopdirectoryof
thepythonsourcetreeafterbuildingtheinterpreterandrun:
pythonLib/keyword.py
FUNCTIONS
iskeyword=__contains__(...)
x.__contains__(y)yinx.
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
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞10 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容