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 trialjohnahodge
6,639 PointsI'm having a hard time overriding __len__(), any help?
I keep getting errors, am I even close?
class Liar(list):
def __len__():
super().__len__()
return self +1
2 Answers
Jennifer Nordell
Treehouse TeacherHi there, johnahodge ! You're really close. But remember, to access self
you must pass in self
to the __init__
.
Also, you will need to do the return
on the same line with the super().__len__()
.
Hope these hints help!
Pratham Mishra
14,191 Pointsclass Liar(list): def len(self): list super().len() return list + 1