Tag view

#dataclasses

Cross-subject tag search for related interview cards.

Clear

Results update as you type. Press / to jump straight into search.

Tagged with dataclasses

1 card

Python Easy Theory

What are Python dataclasses?

Dataclasses reduce boilerplate for data-carrying classes by generating methods like `__init__` and `__repr__`.

  • Great for structured data
  • Supports defaults and type hints
  • Not the same as full validation models

What are Python dataclasses?