In C#
, when naming variables/functions, there were implicit rules such as CamelCase
and PascalCase
I wonder if Python also has this rule.
string thisIsMyVariable = "a" public void ThisIsMyMethod()
this_is_my_variable = 'a' def this_is_my_function():
function python varaiables naming-convention
To summarize PEP 8 simply
(Assume global variables are used only within one module)
© 2024 OneMinuteCode. All rights reserved.