样式

命名

不好的

class fooClass: ...
class foo_class: ...

好的

class FooClass: ...

函数

不好的

def CapCamelCase(*a): ...
def mixCamelCase(*a): ...

好的

def func_separated_by_underscores(*a): ...

变量

不好的

FooVar = "CapWords"
fooVar = "mixedCase"
Foo_Var = "CapWords_With_Underscore"

好的

# local variable
var = "lowercase"

# internal use
_var = "_single_leading_underscore"

# avoid conflicts with Python keyword
var_ = "single_trailing_underscore_"

# a class attribute (private use in class)
__var = " __double_leading_underscore"

# "magic" objects or attributes, ex: __init__
__name__

# throwaway variable, ex: _, v = (1, 2)
_ = "throwaway"