Skip to content

Instantly share code, notes, and snippets.

@estevaofon
Created April 22, 2024 04:49
Show Gist options
  • Save estevaofon/3796a5163f4528089cdaec34616598ba to your computer and use it in GitHub Desktop.
Save estevaofon/3796a5163f4528089cdaec34616598ba to your computer and use it in GitHub Desktop.
@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