Python's Data Containers Comparison
Posted on Thu 24 August 2023 in python
With Python 3.7 data classes have been introduced. They are simple classes that can hold some data as attributes,
support type hints in a clean way, and provide a default constructor for developers. Good news! they can be immutable (frozen).
I know the dataclasses
lib provides much more features …
Continue reading