词法单元:关键字
关键字是具有特殊含义的保留字,在 Python 解释器处理时会被特殊对待。它们区分大小写,不能用于命名标识符(类、函数、变量或结构名称)。
Python 中的关键字列表如下:
True | False | import |
from | as | None |
and | or | not |
in | is | try |
except | finally | raise |
del | global | nonlocal |
lambda | def | class |
with | if | elif |
else | pass | for |
while | continue | break |
assert | return | yield |
async | await |