Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Edward A. Polanco Murillo
2,872 Pointsalittle bit confused
just out of curiosity I feel like I am missing something. I feel like I should be adding other instead of song as one of the attributes. but if thats the case then why? as well as for seconds.
class Song:
def __init__(self, artist, title, length):
self.artist = artist
self.title = title
self.length = length
def __int__(self):
return int(self.length)
def __eq__(self, Song):
return int(self) == seconds
def __gt__(self, Song):
return int(self) > seconds
def __lt__(self, Song):
return int(self) < seconds
def __ge__(self, song):
return int(self) > seconds or int(self) == seconds
def __le__(self, song):
return int(self) < seconds or int(self) == seconds
1 Answer

Steven Parker
220,450 PointsYou haven't defined anything named "seconds", so you can't compare to that.
And it's certainly more conventional to name the second argument "other", but not technically necessary. Just compare to your second argument. But notice that sometimes you spelled it with a capital "S", and other times with little "s" — that's OK too, just make sure the reference matches the argument in each method.
And you can simplify the last comparisons by using different operators (just one for each): "<=" for "le" and ">=" for "ge".