变量命名规则:
1.变量命名不可以以数字开头,如4four,3man;
2.不推荐使用以下划线开头,下划线开头的内容在python中有特殊意义,如_age,_name;
3.推荐视同固定单词及其缩写,如skt=soket,srv=server;
4.以posix命名规则为主,posix命名规则单词全部小写,且所有单词之间以下划线连接,如my_first_love;
5.驼峰命名法:所有单词自动连接,且每个单词首字母均大写,分为驼峰命名法和小驼峰命名法:
大驼峰命名法:所有单词首字母均大写,如MyFirstLove;
小驼峰命名法:第一个单词首字母小写,其余均大写,如myFirstLove;
6.避开关键字和保留字,Python有33个关键字:
False, None, True, and, as, assert, break, class, continue, def, del, elif, else, except, finally, for, from, global, if, import, in, is, lambda, nonlocal, not, or, pass, raise, return, try, while, with, yield。