变量
作者:互联网
注释
单行注释
语法:
# 注释的内容
说明多行代码的功能时,一般将注释写在代码的上一行
# 打印hello
print(hello)
print(hello)
print(hello)
说明单行代码时,一般写在右边
print(1+2) # 加法运算
变量
先定义后使用
-
变量名规则:
- 变量名只能是字母、数字或者下划线的任意组合,且不能是数字开头
- 变量名不能取关键字
-
变量名规范
- 见名知意:取名字让人看得懂
- 命名风格
- 驼峰命名法
- 小驼峰 userName
- 大驼峰 UserName
- 驼峰命名法
标签:变量,驼峰,代码,注释,print,变量名,hello 来源: https://www.cnblogs.com/tangyuanzi/p/16558619.html