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 trialElizabeth McInerney
3,175 Pointsto_timezone
This is working in Workspaces but returns "Bummer! Try again in the challenge.
import datetime
import pytz
starter = pytz.utc.localize(datetime.datetime(2015, 10, 21, 23, 29))
def to_timezone(timezone_name, starter):
return starter.astimezone(pytz.timezone(timezone_name))
to_timezone('US/Pacific',starter)
2 Answers
Chris Freeman
Treehouse Moderator 68,441 PointsSO very close! The challenge mentions only the "timezone as a string" as arguments. Since starter
is already defined outside the function, it doesn't need to be passed in. In short: remove starter
from the function argument list
Elizabeth McInerney
3,175 PointsOMG, that was easy. I must have been tired last night. Thanks!
Ahmed Elsawey
Courses Plus Student 3,527 PointsAhmed Elsawey
Courses Plus Student 3,527 Pointschris freeman This is my code but it does not work for some reason: def to_timezone(name): return starter.astimezone(pytz.timezone(name))
Ahmed Elsawey
Courses Plus Student 3,527 PointsAhmed Elsawey
Courses Plus Student 3,527 Pointschris freeman basically what Elizabeth has done but somehow it does not work for me, this is all the code on my screen: import datetime
import pytz
starter = pytz.utc.localize(datetime.datetime(2015, 10, 21, 23, 29))
def to_timezone(name): return starter.astimezone(pytz.timezone(name))
to_timezone('US/Pacific',starter)
Jason Anello Ricky Catron Kenneth Love
Chris Freeman
Treehouse Moderator 68,441 PointsChris Freeman
Treehouse Moderator 68,441 PointsAhmed Elsawey: Extra code in the challenge sometimes confuses the grader. Remove the last line:
to_timezone('US/Pacific',starter)