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? Timezone Strings

Andrew Wilcox
Andrew Wilcox
4,374 Points

I don't understand this challenge! - timeszone.py (pytz / to_timezone)

I am not sure I understand what is needed on this challenge!

timezone.py
import datetime

import pytz

starter = pytz.utc.localize(datetime.datetime(2015, 10, 21, 23, 29))

def to_timezone(pacific):
    pacific = pytz.timezone('US/Pacific')
    starter_convert = datetime.datetime(pacific)
    return starter_convert

2 Answers

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

I tried this code challenge as well and my methods didn't work. So I did a little digging into how I passed this challenge before.

We need to use a different method to pass the challenge.

Try passing the timezone into astimezone() in your code.

You don't need to provide a specific hard coded timezone. The function assumes it will be called a specific timezone later on. :)

Jonathan Grieve that was really helpful! Thanks

This code worked for me to pass!

import datetime

import pytz

starter = pytz.utc.localize(datetime.datetime(2015, 10, 21, 23, 29))

def to_timezone(timezone_name):
    new_timezone = pytz.timezone(timezone_name)
    new_date = starter.astimezone(new_timezone)

    return new_date