Variable name conventions (Python)
Follow the conventions for the language you are using!
For example, variable names:
- Variable:
snake_case
- Global constant:
ALL_CAPS
- Function:
snake_case
- Class:
CamelCase
- Hidden / Not Public:
_underscore
- Built-in (Python only):
__dunder__