-
Notifications
You must be signed in to change notification settings - Fork 0
Strings
Vinicius Reif Biavatti edited this page Jul 25, 2022
·
3 revisions
- Always use single quotes
''for strings - Double quotes
""are only used for docstrings
✅ Do
name: str = 'John Due'❌ Don't
name: str = "John Due" # Used double quotes- Home
- Structural Naming Conventions
- Format Conventions
- Code Naming Conventions
- Inheritance
- Access Modifiers
- Importation
- Functions and Methods
- Documentation
- Resources