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 trialDarrin Spell Jr
Full Stack JavaScript Techdegree Student 10,303 PointsCan someone explain to me what I am doing wrong please...
I need help trying to figure out what I am doing wrong.
class Song:
def __init__(self, artist, title, length):
self.artist = artist
self.title = title
self.length = length
songs = self.length
#compare songs by their length in seconds
#add all the required methods
#convert Song into intigers
def __int__(self):
return self.songs
def __eq__(self, other):
return int(self) == other
def __gt__(self, other):
return int(self) >= other
def __lt__(self, other):
return int(self) <= other
1 Answer
ursaminor
11,271 PointsDon't modify the code that's already there. Delete songs = self.length
.
__int__
should return self.length, not self.songs. (Does it make sense for a Song
(self) to have songs
?)
__gt__
and __lt__
should be >
and <
>=
and <=
are __ge__
and __le__
, respectively. You need to add those methods.
https://docs.python.org/3.7/reference/datamodel.html#basic-customization