python命名规范
变量名变量名只能是字母,数字或下划线的任意组合变量名的第一个字符不能是数字以下关键字不能声明为变量名and,as,assert,breakclass,continue,def,delelif,else,except,execfinally,for,from,globalif,import,in,is,lambdanot,or,pass,printralse,return,trywhile,with,yield变量名尽量小写, 如有多个单词,用下划线隔开count = 0