Python中变量和函数的命名约定是什么?
2022-09-05 01:12:00
来自 C# 背景的变量和方法名称的命名约定通常是 camelCase 或 PascalCase:
// C# example
string thisIsMyVariable = "a"
public void ThisIsMyMethod()
在Python中,我看到了上面的内容,但我也看到了下划线的使用:
# python example
this_is_my_variable = 'a'
def this_is_my_function():
有没有一种更可取的,明确的Python编码风格?