Skip to content

Latest commit

 

History

History
75 lines (46 loc) · 1.01 KB

python-code-style.rst

File metadata and controls

75 lines (46 loc) · 1.01 KB

代码风格

命名

类命名

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"