Skip to content

Class Properties Access

Vinicius Reif Biavatti edited this page Jul 25, 2022 · 2 revisions

✅ Do

class Person:
    # Public
    @property
    def name() -> str:
        ...

    # Protected
    @property
    def _surname() -> str:
        ...

    # Private
    @property
    def __age() -> int:
        ...
Clone this wiki locally