Python 变量命名规则

Posted klvchen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 变量命名规则相关的知识,希望对你有一定的参考价值。

Python 变量命名规则

1. 要具有描述性

2.变量名只能是:数字,字母组成,不可以是空格或特殊字符,如:(#?。,¥$*~!&)等

3.不能是中文

4.不能以数字开头

5.保留字符是不能被使用,如下:

[‘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‘]

 

常用的命名方法:

phone_number = 13000000000

phoneNumber =  13000000000

以上是关于Python 变量命名规则的主要内容,如果未能解决你的问题,请参考以下文章

Python变量命名规则

Python 变量命名规则

变量的命名规则

python之变量的命名规则

python中变量的基本使用及命名规则

详解python的命名规则