上QQ阅读APP看书,第一时间看更新
3.1.2 Python关键字
Python关键字是Python中具有特殊意义的保留字,它们不能被用作常量、变量或其他任何对象的名称。使用关键字可以访问Python提供的内置功能和语法结构。熟记关键字有助于编写符合Python语法标准的程序,避免发生语法错误。Python中的关键字包括False、None、True、and、as等,共35个。使用Python的keyword模块输出Python中的关键字列表,代码如下。
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']