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 Dice Roller Compare and Contrast

We'd like to compare songs by their length,

We'd like to compare songs by their length, which is measured in whole seconds. Create an int method that should return the length of the song. Then, create the following comparison methods: eq, lt, gt, le and ge.

songs.py
class Song:
    def __init__(self, artist, title, length):
        self.artist = artist
        self.title = title
        self.length = length

1 Answer

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,253 Points

This code challenge is testing what you learned in the previous video.

You'll be creating the methods that when called will perform various calculations using comparison operators

Remember how you define methods in Python.

def __int__(self):
     return ...

You define a method, give the method a name and then use self as a default argument.

You then perform the calculations by returning the result.

Use the other methods to return the result of the _int method and return calculations on them. Revew the video if you're still struggling. :)