python-33个关键字(必记)(基础语法:)

--huaxiawudi

# python中的33个key(基本语法):

# 代码命令如下

from keyword import kwlist

print(kwlist)
['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']

猜你喜欢

转载自blog.csdn.net/huaxiawudi/article/details/81264536