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 trialTobiasz Lorenc
3,757 Points__len__ problem, help me
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.
import random
class Liar(list):
def __len__(self, other):
super().__len__(self,other)
return self# + bool(random.randint(-2, 2))
Bot answer: Bummer: TypeError: len() missing 1 required positional argument: 'other'
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsYou are on the right track.
- the
__len__
method doesnβt take arguments so onlyself
is needed on thedef
line, and no arguments are needed in the super call. - the results of the super call are not saved
- modify the results from super call and return it.
Post back if you need more help. Good luck!!!
Tobiasz Lorenc
3,757 PointsTobiasz Lorenc
3,757 PointsThank u! I did it :)