Python Standards¶
Python code style standards (PEP 8 compliance).
Formatting¶
Use Black for automatic formatting:
Naming Conventions¶
- Classes - PascalCase (
TicketForm) - Functions - snake_case (
get_ticket) - Constants - UPPER_CASE (
MAX_TICKETS) - Private - Leading underscore (
_internal_method)