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 trialAndrei Oprescu
9,547 Pointscan you tell me what i am doing wrong?
I a stuck on a question and I have this code:
import datetime
def far_away(x): datetime.datetime.now() += datetime.timedelta(x) return datetime.datetime.now()
Can you look at the question i have been given and tell me what i did wrong?
Thanks
import datetime
def far_away(x):
datetime.datetime.now() += datetime.timedelta(x)
return datetime.datetime.now()
2 Answers
Jeffrey James
2,636 Pointskeep the now + the time delta in a variable and then return it.
Andrei Oprescu
9,547 PointsThanks a lot! your answers helped!
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsChanged to answer