腳踏車是幾點出發的?(全球版)
當你需要把一個 datetime 從某個時區轉到另一個時區時,請使用 .astimezone() 和 tz。你常會把時間轉成 UTC,不過這次換個口味,試著把位於 'America/New_York' 的時間轉到幾個不同的時區。
本練習屬於課程
在 Python 處理日期與時間
動手互動練習
試著完成這個範例程式碼,體驗一下這個練習。
# Create the timezone object
uk = ____
# Pull out the start of the first trip
local = onebike_datetimes[0]['start']
# What time was it in the UK?
notlocal = local.____(____)
# Print them out and see the difference
print(local.isoformat())
print(notlocal.isoformat())