关键字是Python编程语言(以及任何其他编程语言,如C,C ++,Java等)中的保留字,其含义已定义,我们无法更改其含义。在python编程语言中,关键字区分大小写。
注意:我们不能使用任何保留字(称为关键词)作为标识符(如变量名,函数名等)。
这是Python关键字的列表(该列表可以根据Python版本而有所不同),
在Python 2.5中
and del from not while as elif global or with assert else if pass yield break except import print class exec in raise continue finally is return def for lambda try
在Python 3.8.1中
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://docs.python.org/2.5/ref/keywords.html