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 trialSoraia Carmo
3,527 PointsCan'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
import datetime
def minutes(initial, final):
final = final - initial
return round(final.total_seconds() // 60)
1 Answer
Christopher Frederick
6,547 PointsHi 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. :)
Soraia Carmo
3,527 PointsSoraia Carmo
3,527 PointsThanks!