python关键字有哪些?怎么看?

  • 更新时间:2021-07-15 08:18:05
  • 编辑:文傲蕾
本站收集了一篇相关的编程文章,网友蔚英达根据主题投稿了本篇教程内容,涉及到Python相关内容,已被974网友关注,下面的电子资料对本篇知识点有更加详尽的解释。

参考资料

正文内容

今天在网上看到《python关键字有哪些?怎么看?》,好东西应该跟大家分享,把程序员重写的代码发布到这里,希望大家能有所收获。

python关键字有哪些?怎么看? 

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

1、keyword模块进行输出查看

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', ...

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

好啦,以上就是关于关键字查看的全部内容了,感兴趣的小伙伴可以进行设置查看哦~

相关教程

用户留言