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 trialKimmo Ojala
Python Web Development Techdegree Student 8,257 PointsTimezone conversion
Don't know why this code doesn't work. Please hint why .
import datetime
naive = datetime.datetime(2015, 10, 21, 4, 29)
pacific = datetime.timezone(datetime.timedelta(hours=-8))
hill_valley = datetime.datetime(2015, 10, 21, 4, 29, tzinfo=pacific)
new_tz = datetime.timezone(datetime.timedelta(hours=1))
paris = datetime.datetime(2015, 10, 21, 4, 29, tzinfo=new_tz)
hill_valley.astimezone(new_tz)
1 Answer
Kimmo Ojala
Python Web Development Techdegree Student 8,257 PointsFinally understood that paris is supposed to be the variable that uses the converted hill_valley datetime object.
Kimmo Ojala
Python Web Development Techdegree Student 8,257 PointsKimmo Ojala
Python Web Development Techdegree Student 8,257 Pointsimport datetime
naive = datetime.datetime(2015, 10, 21, 4, 29)
pacific = datetime.timezone(datetime.timedelta(hours=-8))
hill_valley = naive.replace(tzinfo=pacific)
new_tz = datetime.timezone(datetime.timedelta(hours=1))
paris = datetime.datetime(2015, 10, 21, 4, 29, tzinfo=new_tz)
hill_valley = hill_valley.astimezone(new_tz)
I corrected the conversion of hill_valley to new_tz. but now I get the error message that task 1 is no longer passing. Why not? Please advice.