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 Far Away

Andrei Oprescu
Andrei Oprescu
9,547 Points

can 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

far_away.py
import datetime

def far_away(x):
    datetime.datetime.now() += datetime.timedelta(x)
    return datetime.datetime.now()

2 Answers

Jeffrey James
Jeffrey James
2,636 Points

keep the now + the time delta in a variable and then return it.

Andrei Oprescu
Andrei Oprescu
9,547 Points

Thanks a lot! your answers helped!