-
Notifications
You must be signed in to change notification settings - Fork 0
Class Constants Access
Vinicius Reif Biavatti edited this page Jul 25, 2022
·
1 revision
✅ Do
class Math:
PI: float = 3.14 # Public
_PI: float = 3.14 # Protected
__PI: float = 3.14 # Private
- Home
- Structural Naming Conventions
- Format Conventions
- Code Naming Conventions
- Inheritance
- Access Modifiers
- Importation
- Functions and Methods
- Documentation
- Resources