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 trial

Python Object-Oriented Python Advanced Objects Frustration

Ricardo Franco
seal-mask
.a{fill-rule:evenodd;}techdegree
Ricardo Franco
Data Analysis Techdegree Student 16,258 Points

Stuck 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.

frustration.py
class Liar(list):
    def __len__(self, count):
        fake = list.__len__(self, count)
        if fake == count:
            return count - 2

1 Answer

Steven Parker
Steven Parker
230,970 Points

The "__len__" method doesn't take an argument, and a better way to call a method in a parent class is by using "super()".