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 trialPaema Hare
22,705 PointsOOP Code Challenge Super! difficulties
I got to the third task
"Sorted inventories should be just that: sorted. Right now, we just add an item onto the slots list whenever our add_item method is called. In the SortedInventory's add_item method, use the list.sort() method to make sure the slots list gets sorted after an item is added."
I can't seem to figure out where exactly to put the list.sort() method, nor how to be sure it is sorted after an item is added. I feel like I have missed something from previous videos but I am not sure what
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 sort_items(slots):
list.sort()
1 Answer
Joseph Yhu
PHP Development Techdegree Graduate 48,637 PointsYou don't need a separate sort_items
method; you just add list.sort()
directly below the super().add_item(item)
in the add_item
method; make sure to replace list
with the appropriate variable. Hint: it begins with self
.
Paema Hare
22,705 PointsPaema Hare
22,705 PointsThank you Joseph!