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 trialManyung Tah
7,445 PointsOverride the __len__ method.. whats wrong with my code?
Now I want you to make a subclass of list. Name it Liar. Override the len method so that it always returns the wrong number of items in the list. For example, if a list has 5 members, the Liar class might say it has 8 or 2. You'll probably need super() for this.
Bummer: TypeError: init() missing 1 required positional argument: 'value'
class Liar(list):
def __init__(self,value):
self.value = value
def __len__(self):
super().__len__()
return len(self.value) + 3
1 Answer
Steven Parker
231,248 PointsThe instructions say to "Override the __len__
method", but they do not ask you to override the __init__
method (or to add a required parameter)
Also, when you call the base "len" method, you don't use the value it returns. But you might want to.
Manyung Tah
7,445 PointsManyung Tah
7,445 Pointsthank you!