False、True、None
if、else、elif、for、while、break、continue
def、class、return、pass、lambda
import、from、as
try、except、finally、raise、assert
and、or、not、in、is
global、nonlocal、del、with、yield
记住一句话:这些词一个都不能当变量名、函数名、类名用。
另外再记两个起名小规则:
1. 不能以数字开头
2. 不能用空格、特殊符号(只能用字母、数字、下划线_)