Naming Conventions
PEP 8 style guide for naming
Interview Relevant: Code quality
Naming Conventions
Follow PEP 8 standards.
- Variables/Functions:
snake_case - Classes:
PascalCase` - Constants:
UPPER_CASE
PEP 8 style guide for naming
Follow PEP 8 standards.
snake_casePascalCase`UPPER_CASEAsk about the topic