-
Notifications
You must be signed in to change notification settings - Fork 0
Inline Expressions
Vinicius Reif Biavatti edited this page Jul 25, 2022
·
1 revision
- Never use inline expressions for conditions and loops
✅ Do
if True:
pass
for i in range(10):
pass
❌ Don't
if True: pass
for i in range(10): pass
- Home
- Structural Naming Conventions
- Format Conventions
- Code Naming Conventions
- Inheritance
- Access Modifiers
- Importation
- Functions and Methods
- Documentation
- Resources