能以下划线(_)开头
1. 驼峰命名法
例如:userName,myAge
例如:UserName,FirstName
2. PEP8标准
用下划线(_)连接所有的单词
例如:user_name,send_buf
一般命名习惯:
关键字已经被Python官方使用,不允许开发者自己定义的名字与关键字相同。
and , as , assert
break ,
class , continue
def , del
elif , else , except
False , for , from , finally
global
if , in ,is , import
lambda
None , not , nonlocal
or
pass
return , raise
True , try
while , with
yield