C# のバックグラウンドから来て、変数とメソッド名の命名規則は通常キャメルケースまたはパスカルケースのいずれかです。
// C# example
string thisIsMyVariable = "a"
public void ThisIsMyMethod()
Python では、上記を確認しましたが、アンダースコアが使用されていることも確認しました。
# python example
this_is_my_variable = 'a'
def this_is_my_function():
Python のより好ましい、決定的なコーディング スタイルはありますか?