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

naive is a datetime with no timezone. Create a new timezone for US/Pacific, which is 8 hours behind UTC (UTC-08:00).

to me this is right or isn't it?

aware.py
import datetime

naive = datetime.datetime(2015, 10, 21, 4, 29)
us/pacific = datetime.timezones(datetime.timedelta(hours = -8))
hill_valley = datetime.datetime(2015, 10, 21, 4, 29, tzinfo = us/pacific)

1 Answer

Jeff Muday
MOD
Jeff Muday
Treehouse Moderator 28,716 Points

You've got the concept, that's great! Now we can change a couple of small typos and you should have it.

Hint: the variable name us/pacific is not valid. Change that as well as fix the typo on the line with timezones should be singular.

# 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)

Good luck with your Python journey!