-
Notifications
You must be signed in to change notification settings - Fork 0
Class Methods Access
Vinicius Reif Biavatti edited this page Jul 25, 2022
·
1 revision
✅ Do
class Person:
# Public
def talk() -> None:
...
# Protected
def _talk() -> None:
...
# Private
def __talk() -> None:
...
- Home
- Structural Naming Conventions
- Format Conventions
- Code Naming Conventions
- Inheritance
- Access Modifiers
- Importation
- Functions and Methods
- Documentation
- Resources