Created
April 22, 2024 04:49
-
-
Save estevaofon/3796a5163f4528089cdaec34616598ba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@dataclass | |
class Pessoa: | |
nome: str | |
idade: int | |
skills: list = field(default_factory=list) | |
data: datetime = field(default_factory=datetime.now) | |
contador: int = field(default=0, init=False, repr=False) | |
def __post_init__(self): | |
Pessoa.contador += 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment