将本地时间和时区转换为UTC?

问题描述 投票:0回答:1

我在日期时间有多个时区,我想使用python将它们转换为UTC时区。例如:

时区日期时间 GMT + 5 10-03-2019 01:00:00 EST 10-03-2019 01:00:00 CET 10-03-2019 01:00:00

答案应该是:

UTC 09-03-2019 20:00:00 UTC 10-03-2019 05:00:00 UTC 10-03-2019 02:00:00

python datetime timezone
1个回答
0
投票

我无法解析时区来处理内置日期时间,但使用arrow模块工作。我假设你的日期是DD / MM / YYYY而不是MM / DD / YYYY。

import arrow

def parse_date(string):
    mydate = arrow.get(string, "ZZZ DD-MM-YYYY HH:mm:SS")
    return mydate.to("utc").strftime("%Z %d-%m-%Y %H:%M:%S")

parse_date("GMT+5 10-03-2019 01:00:00")
parse_date("EST 10-03-2019 01:00:00")
parse_date("CET 10-03-2019 01:00:00")

输出:

'UTC 09-03-2019 20:00:00'
'UTC 10-03-2019 06:00:00'
'UTC 10-03-2019 00:00:00'

关于格式令牌的arrow文档可以找到here

© www.soinside.com 2019 - 2024. All rights reserved.