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 trialMUZ140154 Tariro Mushonga
2,329 Pointsstage 3 where on earth do timezones make sense
Challenge Task 1 of 1 guyz im stuck plz help
Create a function named to_timezone that takes a timezone name as a string. Convert starter to that timezone using pytz's timezones and return the new datetime.
import datetime
import pytz
starter = pytz.utc.localize(datetime.datetime(2015, 10, 21, 23, 29))
2 Answers
Kenneth Love
Treehouse Guest TeacherThe code you posted is exactly how the challenge starts. What have you tried?
Tony McCabe
4,889 Pointsimport datetime
import pytz
starter = pytz.utc.localize(datetime.datetime(2015, 10, 21, 23, 29)) def to_timezone(tz): Zim = pytz.timezone(tz) new_time = starter.astimezone(Zim) return new_time Try this out if your still struggling
Chris White
6,212 PointsChris White
6,212 PointsWhere am I going wrong with this? Even when I take it maybe too literally and create the string as a 'US/Pacific' or something, it still won't let me pass.
Kenneth Love
Treehouse Guest TeacherKenneth Love
Treehouse Guest Teacherstarter
is adatetime
object so it doesn't have apytz
method/attribute. You need to create a timezone based on the string (which you're doing, just not in the right way/spot) and then returnstarter
as that timezone.