Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Object-Oriented Python Advanced Objects Emulating Built-ins

François Morlane-Hondere
François Morlane-Hondere
1,606 Points

Why not make the Inventory class a subclass of list?

If we want the Inventory class to behave like a list, why not just make Inventory a subclass of list so that it can inherit all of its methods instead of reimplementing them one by one?

Thanks!

2 Answers

Steven Parker
Steven Parker
229,744 Points

That's actually a good implementation idea, but the course is just using the "Inventory" class as an example to show you the process of Emulating Built-ins first.

As it turns out, the very next video is about Subclassing Built-ins.