python 关键字 keywords

python关键字一览
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")

查询这些关键字

你可能感兴趣的:(python)