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.
Category: .Python general
Python style guide!
Python has an official style guide!! https://peps.python.org/pep-0008/
Python coding
Multi-line instructions Use the \ character
Python differences to C
Increment & Decrement
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