变量的命名规则
变量定义的规则:
-
变量名只能是 字母、数字或下划线的任意组合
-
变量名的第一个字符不能是数字
-
以下关键字不能声明为变量名 ['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']
-
变量名建议不使用拼音和中文
-
变量的要具有意义
-
变量名不要过长
-
变量名要区分大小写
-
变量名推荐写法:
-
驼峰体
-
大驼峰 XiaoPingGai
- 小驼峰 xiaoPingGai
-
-
下划线 xiao_ping_gai
-