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 trialVarsha Joshi
Courses Plus Student 7,069 PointsThe error I am encountering for this part`paris` has the same date and time as `hill_valley`. Did you convert timezones?
import datetime
naive = datetime.datetime(2015, 10, 21, 4, 29) print(naive) pacific = datetime.timezone(datetime.timedelta(hours = -8)) europe = datetime.timezone(datetime.timedelta(hours = 1)) yy = int(naive.year) mo = int(naive.month) dd = int(naive.day)
hh = int(naive.hour)
mm = int(naive.minute) hill_valley = datetime.datetime(yy, mo, dd, hh, mm, tzinfo=pacific)
import pdb; pdb.set_trace()
paris = hill_valley.replace(tzinfo=europe) print('hill_valley: {}'.format(hill_valley))
print('paris: {}'.format(paris))
output:
hill_valley: 2015-10-21 04:29:00-08:00 paris: 2015-10-21 04:29:00+01:00 It shows the time is being changed with the timezone.
import datetime
naive = datetime.datetime(2015, 10, 21, 4, 29)
print(naive)
pacific = datetime.timezone(datetime.timedelta(hours = -8))
europe = datetime.timezone(datetime.timedelta(hours = 1))
yy = int(naive.year)
mo = int(naive.month)
dd = int(naive.day)
hh = int(naive.hour)
mm = int(naive.minute)
hill_valley = datetime.datetime(yy, mo, dd, hh, mm, tzinfo=pacific)
#import pdb; pdb.set_trace()
paris = hill_valley.replace(tzinfo=europe)
print('hill_valley: {}'.format(hill_valley))
print('paris: {}'.format(paris))
1 Answer
Dmitry Bruhanov
8,513 PointsHello, Vashra!
This code works:
import datetime
naive = datetime.datetime(2015, 10, 21, 4, 29)
pacific = datetime.timezone(datetime.timedelta(hours = -8))
europe = datetime.timezone(datetime.timedelta(hours = 1))
hill_valley = datetime.datetime(naive.year, naive.month, naive.day, naive.hour, naive.minute, tzinfo=pacific)
paris = hill_valley.astimezone(europe)