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 trialAizah Sadiq
2,435 PointsChallenge
This is for challenge task 1 and I don't understand it
import datetime
import pytz
fmt = '%m-%d %H:%M %Z%z'
starter = datetime.datetime(2015, 10, 21, 4, 29)
local = starter.localize('US/Eastern')
1 Answer
Jeff Muday
Treehouse Moderator 28,720 PointsDates and Times in Python can be a little challenging! I haven't memorized the syntax so had to look it up at:
https://pypi.org/project/pytz/
I hope the code is somewhat explanatory...
# import the Python Timezone library
import pytz
# create a timezone localizer called "pacific"
pacific = pytz.timezone('US/Pacific')
# convert the starter time to the local pacific timezone.
local = pacific.localize(starter)