
关键字是Python内部的保留词。我们不能使用这些保留词作为变量名称、函数名称、或其他标识符。Python关键字是区分大小写的。Python是一种动态语言,关键字可能会随着发展有少许的变化。
and | del | for | is | raise |
assert | elif | from | lambda | return |
break | else | global | not | try |
class | except | if | or | while |
continue | exec | import | pass | with |
def | finally | in | yield |
Python 基础