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.

Soraia 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!