第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

python中datetime模塊的isoformat函數(shù)返回錯(cuò)誤的偏移量

python中datetime模塊的isoformat函數(shù)返回錯(cuò)誤的偏移量

一只斗牛犬 2023-10-18 15:49:00
所以我有 -timezone = pytz.timezone('Asia/Kolkata')one_time_stamp = '2017-06-01 05:30:00'zoned_time_stamp = datetime.datetime.strptime(one_time_stamp, '%Y-%m-%d %H:%M:%S')#This outputs 2017-06-01 05:30:00 which is fine.print(zoned_time_stamp)#notice timezone addednon_iso_zoned_ts = zoned_time_stamp.replace(microsecond=0, tzinfo=timezone)# This outputs 2017-06-01 05:30:00 which is fine.print(zoned_time_stamp)iso_date = non_iso_zoned_ts.isoformat()#This outputs 2017-06-01T05:30:00+05:53 which is incorrect. Ideally it should be 2017-06-01T05:30:00+05:30print(iso_date)現(xiàn)在我想知道為什么 isoformat 添加了 05:53 的偏移量,而亞洲/加爾各答時(shí)區(qū)是 +05:30。參考 - https://www.zeitverschiebung.net/en/timezone/asia--kolkata
查看完整描述

1 回答

?
慕田峪9158850

TA貢獻(xiàn)1794條經(jīng)驗(yàn) 獲得超8個(gè)贊

創(chuàng)建日期時(shí)間時(shí),為 tzinfo 添加 pytz 實(shí)例幾乎總是錯(cuò)誤的。使用 pytz 將原始日期時(shí)間轉(zhuǎn)換為時(shí)區(qū)感知實(shí)例的正確方法是使用區(qū)域的 localize 方法:

zone.localize(dt)

您的案例的輸出:

>>>?print(timezone.localize(zoned_time_stamp))
2017-06-01?05:30:00+05:30

有非常清楚的記錄表明,在 tzinfo 中傳遞 pytz 實(shí)例不是創(chuàng)建本地化日期時(shí)間的受支持的方式。然而,這也是 Python 代碼中常見(jiàn)的錯(cuò)誤 - 我猜很多用戶都沒(méi)有閱讀文檔!


查看完整回答
反對(duì) 回復(fù) 2023-10-18
  • 1 回答
  • 0 關(guān)注
  • 241 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)