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 trialRicardo Franco
Data Analysis Techdegree Student 16,258 PointsStuck on list override code challenge
I am not sure if I am going about this the right way...I am still trying to acclimate on where to plug and play the appropriate values. If I could have someone look at my code and provide me feedback, I would greatly appreciate it. Thanks in advance.
class Liar(list):
def __len__(self, count):
fake = list.__len__(self, count)
if fake == count:
return count - 2
1 Answer
Steven Parker
231,198 PointsThe "__len__" method doesn't take an argument, and a better way to call a method in a parent class is by using "super()".