python关键字有哪些?

在python中,关键字封装为一个模块,其中有静态属性可以列出所有关键字

import keyword

print(keyword.kwlist)

已知有33个关键字

[‘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’]

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注