-
Notifications
You must be signed in to change notification settings - Fork 0
Line Length 79
Vinicius Reif Biavatti edited this page Jul 25, 2022
·
1 revision
- Use 79 columns as line length
- Never exceed this length
- Use backslash to wrap the line
- When line wrap, use the same column after declaration for the second line
✅ Do
text: str = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. ' \
'Aliquam a elit nisl.'
❌ Don't
text: str = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam a elit nisl.'
- Home
- Structural Naming Conventions
- Format Conventions
- Code Naming Conventions
- Inheritance
- Access Modifiers
- Importation
- Functions and Methods
- Documentation
- Resources