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) Where on Earth do Timezones Make Sense? Datetime Awareness

Eloy Pires
Eloy Pires
2,806 Points

i don't understand the question

the question ask me to change the variable, but when i do that, the preview task get a error

aware.py
import datetime

naive = datetime.datetime(2015, 10, 21, 4, 29)

pacific = datetime.timezone(datetime.timedelta(hours=-8))

hill_valley = datetime.datetime(2015, 10, 21, 4, 29, tzinfo=pacific)

tz = datetime.timezone(datetime.timedelta(hours=1))

paris = datetime.datetime(2015, 10, 21, 4, 29, tzinfo=tz)

paris = paris.astimezone(tz)

2 Answers

Christopher Shaw
seal-mask
PLUS
.a{fill-rule:evenodd;}techdegree seal-36
Christopher Shaw
Python Web Development Techdegree Graduate 58,248 Points

Good day,

The challenge asks you to set paris, from hill_valley, using the timezone you have created. so simply, replace the last two lines with:

paris = hill_valley.astimezone(tz)

nicolea
nicolea
5,047 Points

import datetime

naive = datetime.datetime(2015, 10, 21, 4, 29)

make a variable for the timezone US/Pacific

us_pacific = datetime.timezone(datetime.timedelta(hours=-8))

make a variable for the time in hill valley that is in the US/Pacific timezone

hill_valley = datetime.datetime(2015, 10, 21, 4, 29, tzinfo=us_pacific)

tz = datetime.timezone(datetime.timedelta(hours=1))

paris = hill_valley.astimezone(tz)