In Python function and variable names should be lowercase and words should be separated by underscores.
Examples:
prime_number = 17
def run_process():
pass
Class names
Class names should normally use the camel case. For different case styles see here.
Example
class MyClass:
pass
Instance variables and method names
Just like function names, the method and instance variable names should be all lowercase and words should be separated by underscores. Non-public methods and instance variables should begin with a single underscore