Python Keywords | ||
False | None① | True |
and | as② | assert③ |
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⑦ |
① Python2.4 中非关键字常量
② Python2.6 时加入
③ Python1.5 时加入
④ 适用于函数内部修改全局变量的值
⑤ 适用于嵌套函数中内部函数修改外部变量的值
⑥ Python2.6 时加入
⑦ Python2.3 时加入
ps:可以在 python 的编译解释器中,输入
help("keywords")
查询这些关键字