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 Inheritance Super!

Chiroi Niehus
Chiroi Niehus
6,729 Points

Having Trouble on Code Challenge: Super! Task 3 of 3

I am not sure what to write inside the list.sort() method to sort the slots list. If somebody could help, it would be greatly appreciated. Thanks!

inventory.py
class Inventory:
    def __init__(self):
        self.slots = []

    def add_item(self, item):
        self.slots.append(item)

class SortedInventory(Inventory):
    def add_item(self, item):
        super().add_item(item)

    def list.sort():

3 Answers

Steven Parker
Steven Parker
229,732 Points

You're close, here's couple of hints.

  • you won't need to define another method
  • remember that the list you want to sort is named slots ("self.slots")

Hi, Because you have inherited from Inventory. All methods and variables are available in SortedInventory class. The list you have to sort is called slots from Inventory. So all you need under is to write self.slots.sort() under add Item method

Hi, I've just tried this and it doesn't seem to work

Steven Parker
Steven Parker
229,732 Points

Oli — If the hints here don't work for you, you might want to start a fresh question from within the challenge. Make sure it adds your code and a link as in this one.

Hello, Post the question