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 trialGarrett Stubblefield
6,674 PointsPlease help. I don't know whether its supposed to be past as arguments or if im just supposed to create them.
The only problems have always resulted from kenneths challenges. Can we not make them more clear.
import datetime
def minutes():
dt1 = timedelta(seconds = 100)
dt2 = timedelta(seconds = 100)
tot = dt1.total_seconds() + dt2.total_seconds()
tot = round(tot/60)
return tot
1 Answer
Steven Parker
231,236 PointsWhen the instructions ask for a function "that takes two datetimes...", the "takes" indicates what arguments will be passed in. So you might define it like this (actual names are your choice):
def minutes(first, second):
And both "first" and "second" will be datetime values.
Molly James
18,386 PointsMolly James
18,386 PointsIt's looking for the time between them so you're going to have to find the difference.
Also, it has to accept parameters rather than having them set specifically within the body.
Should wind up being something along these lines.