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 trialJohn Schut
2,317 PointsChallenge Task timezone.py
What is wrong with my code?
Return(starter) didn't work either...
import datetime
import pytz
def to_timezone(timezone_string):
starter = pytz.utc.localize(datetime.datetime(2015, 10, 21, 23, 29))
starter = starter.astimezone(tz=pytz.timezone(timezone_string))
starter_string = starter.strftime('%y-%m-%d %H:%M')
starter_datetime = datetime.datetime.strptime(starter_string, '%y-%m-%d %H:%M')
return(starter_datetime)
to_timezone('Europe/Amsterdam')
2 Answers
John Schut
2,317 PointsHi Steven,
Thanks! I was close enough to justify this 'Spoiler Alert'... :-)
Steven Parker
231,236 PointsLooks like you're overthinking this one. You nearly had it with just one of your lines. Here's some hints:
- There's a function that converts a localized time to another zone, using a timezone object.
- There's another function that converts a string into a timezone object.
- If you combine these functions, you can get the converted time with a one-liner
- starter is defined for you as a global variable, you won't need to define it inside your function
- For the challenge, you only define your to_timezione function, you don't call it yourself
Can you do it now with just the hints?
If not...
SPOILER ALERT
def to_timezone(timezone_string):
return starter.astimezone(pytz.timezone(timezone_string))