-
Notifications
You must be signed in to change notification settings - Fork 0
Variables
Vinicius Reif Biavatti edited this page Jul 25, 2022
·
1 revision
- Use a good representation name
- Use underscore to separate
- Use the type hint for variables
- Do not use camel case
- Do not use special symbols
- Do not use capital letters
✅ Do
person_name: str = 'John Due'
❌ Don't
person_name = 'John Due'
personName = 'John Due'
personname = 'John Due'
- Home
- Structural Naming Conventions
- Format Conventions
- Code Naming Conventions
- Inheritance
- Access Modifiers
- Importation
- Functions and Methods
- Documentation
- Resources