Skip to content

Class Attributes Access

Vinicius Reif Biavatti edited this page Jul 25, 2022 · 1 revision

✅ Do

class Person:
    def __init__(self):
        self.name: str = 'John Due' # Public
        self._name: str = 'John Due' # Protected
        self.__name: str = 'John Due' # Private
Clone this wiki locally