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 Dates and Times in Python (2014) Dates and Times Timedelta Minute

Can't find the error

Hi everyone,

I keep getting a bummer saying it was expecting 1507 but got 1506. Don't really know what to change to make it work.

Any help would be appreciated! Thanks

minutes.py
import datetime

def minutes(initial, final):
    final = final - initial
    return round(final.total_seconds() // 60)

1 Answer

Hi Soraia,

// indicates what is called 'floor division' (also 'integer division') and will return an integer (surprise!) instead of a float. / indicates 'floating point' division and returns a float instead. I'm sure you can figure out where to go from there and what may be happening as a result of getting an int back from your division instead of a float. :)

Thanks!