Custom Python Lists: Inheriting From list vs UserList – Real Python
https://realpython.com/inherit-python-list/
https://realpython.com/inherit-python-list/
Realpython
Custom Python Lists: Inheriting From list vs UserList – Real Python
In this tutorial, you'll learn how to create custom list-like classes in Python by inheriting from the built-in list class or by subclassing UserList from the collections module.