首页IT科技python关键字总结(python关键字有哪些?怎么看?)

python关键字总结(python关键字有哪些?怎么看?)

时间2025-08-04 18:41:50分类IT科技浏览4828
导读:本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。...

本文教程操作环境:windows7系统              、Python 3.9.1              ,DELL G3电脑              。

1                      、keyword模块进行输出查看

Helponmodulekeyword: NAME keyword-Keywords(from"graminit.c") FILE /usr/lib64/python2.6/keyword.py DESCRIPTION Thisfileisautomaticallygenerated;pleasedontmuckitup! Toupdatethesymbolsinthisfile,cdtothetopdirectoryof thepythonsourcetreeafterbuildingtheinterpreterandrun: pythonLib/keyword.py FUNCTIONS iskeyword=__contains__(...) x.__contains__(y)yinx. DATA __all__=[iskeyword,kwlist] kwlist=[and,as,assert,break,class,continue,def,...

2       、得到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]

3              、判断字符串是否含关键字

>>>keyword.iskeyword(and) True >>> >>>keyword.iskeyword(has) False

创心域SEO版权声明:以上内容作者已申请原创保护,未经允许不得转载,侵权必究!授权事宜、对本内容有异议或投诉,敬请联系网站管理员,我们将尽快回复您,谢谢合作!

展开全文READ MORE
python中import的作用(python import的本质探究)