变量命名
规范:
数字 字母 下划线的组合
数字不能开头 下划线尽量不要用
不能与关键字冲突
['and', 'as', 'assert', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'exec', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'not', 'or', 'pass', 'print', 'raise', 'return', 'try', 'while', 'with', 'yield']
风格:
1.下划线式(python推荐使用)
user_name
2.驼峰体(js推荐使用)
大驼峰
UserName = 'Mary'
小驼峰
userName = 'Mary'