变量、函数、类、模块和其他对象起的名字就叫标识符。
规则:
由字母、数字、下划线组成
不能以数字开头
不能是保留字
严格区分大小写
1 import keyword 2 print(keyword.kwlist)
['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', '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']