首页 > 编程语言 > 详细

Python变量命名规则

时间:2018-08-09 11:59:53      阅读:179      评论:0      收藏:0      [点我收藏+]

变量的命名规则
1、要具有描述性
2、变量名只能_,数字,字母组成,不可以是空格或者特殊字符(!@#$%^&*~)
3、不能以中文为变量名
4、不能以数字开头
5、变量名区分大小写
6、保留字符不能使用来命名
以下关键字(保留字符)不能声明为变量名
[‘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‘]

例:

student_number=30  #Python官方建议命名规则
studnetNumber=30  #驼峰体

常量
在Python里面没有常量,所有的量都是可变的,
为了区分常量和变量,常量用全部大写的变量名代表此变量为常量

 

Python变量命名规则

原文:https://www.cnblogs.com/starkYang/p/9447845.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!