2021.11 Python命名规则留档
作者:互联网
python命名规则:
包、模块:简短的小写名+下划线 package_name
类名:首字母大写+下划线 Student_Info
函数名:小写+下划线 image_acquisision()
变量名:小写+下划线 image_data
全局变量:全部大写+下划线 WINDOW_NUM
异常:首字母大写+Error后缀 ValueError
protected属性:单下划线开头 _xxx
private属性:双下划线开头 __xxx
常用缩写:
function 缩写为fn
text 缩写为 txt
object 缩写为 obj
count 缩写为 cnt
number 缩写为 num
标签:缩写,2021.11,下划线,Python,留档,大写,首字母,小写,image 来源: https://blog.csdn.net/weixin_43350866/article/details/121557761