On this page
article
Dataclass Model
Define data containers with dataclasses.
Category: dataclasses
Problem
Define data containers with dataclasses.
Solution
@dataclass
class Point:
x: float
y: float
Notes
- Adapt variable names and paths to your project
- Add error handling for production use
- See related chapters in the Learning Path