We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
类命名:UpperCamel
class MyClass: pass
函数、参数命名:lower_underscore
def my_function(my_parameter: Type): pass
变量命名:lower_underscore
my_variable = None
常量命名:UPPER_UNDERSCORE
MY_CONSTANT = None
空格:使用四空格 (\u0020)