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