Tabs or spaces

Python officially prefers spaces, however you can use either. A file must use one or the other, not both. Use 4 spaces per indentation level.

Read More

Naming conventions in Python

Whilst you can do what you want, the creators of Python specify naming conventions that should be followed: ClassNamesInStudlyCaps CONSTANTS_IN_ALL_CAPS variable_names_in_snake_case method_names_in_snake_case function_names_in_snake_case

Read More