简单的说就是一串字符串(但字符串未必是标识符)
规则:
- 只能由子母/数字/下划线组成
- 开头不能是数字
-
不能是关键字
['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']
import keyword
print(keyword.kwlist)
以上两行为查看关键字的代码
- 区分大小写
- 见名知意
- 遵循驼峰原则(从第二个单词开始首字母大写 例如:makeFile)
作用;:给函数/变量命名的
注意: 在python3中,非ascii码也可以做标识符