美文网首页
Python 查看关键字

Python 查看关键字

作者: 吕保鑫 | 来源:发表于2020-06-08 20:28 被阅读0次
import keyword
>>> print(keyword.kwlist)
['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', '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']

相关文章

网友评论

      本文标题:Python 查看关键字

      本文链接:https://www.haomeiwen.com/subject/qysdtktx.html