gpt4 book ai didi

python时区GMT转换

转载 作者:行者123 更新时间:2023-12-02 08:53:29 24 4
gpt4 key购买 nike

我有这个日期格式:

Sat Apr 14 21:05:23 GMT-00:00 2018

我想使用datetime来存储这些数据。

datetime.datetime.strptime(dateString, '%a %b %d %H:%M:%S %Z %Y').timetuple()

GMT 的日期/时间格式是什么? document没有 GMT。

最佳答案

处理时区总是有点令人困惑。在您的示例中,您的需求并不具体,因为它与时区相关。

固定时区偏移:

读取您所写内容的一种方法是字符串中的时区信息始终为 GMT-00:00。如果时区始终相同,那么构建 strptime 字符串就很简单:

dt.datetime.strptime(date, '%a %b %d %H:%M:%S GMT-00:00 %Y')

这不会解释时区,因为它是固定的。这将为您提供简单的时区日期时间。由于您的示例立即将 datetime 转换为 timetuple,我认为这就是您想要的结果。

测试:

>>> date = "Sat Apr 14 21:05:23 GMT-00:00 2018"
>>> print(dt.datetime.strptime(date, '%a %b %d %H:%M:%S GMT-00:00 %Y'))
2018-04-14 21:05:23

解释时区偏移:

如果您的时间戳中有非 GMT 时区,并且想要保留信息,您可以执行以下操作:

def convert_to_datetime(datetime_string):
# split on spaces
ts = datetime_string.split()

# remove the timezone
tz = ts.pop(4)

# parse the timezone to minutes and seconds
tz_offset = int(tz[-6] + str(int(tz[-5:-3]) * 60 + int(tz[-2:])))

# return a datetime that is offset
return dt.datetime.strptime(' '.join(ts), '%a %b %d %H:%M:%S %Y') - \
dt.timedelta(minutes=tz_offset)

此函数将获取您的时间字符串并使用 UTC 偏移量。 (例如-00:00)。它将解析字符串中的时区信息,然后将生成的分钟和秒添加回 datetime 中,使其成为 UTC 相对值。

测试:

>>> print(convert_to_datetime("Sat Apr 14 21:05:23 GMT-00:00 2018"))
2018-04-14 21:05:23

>>> print(convert_to_datetime("Sat Apr 14 21:05:23 PST-08:00 2018"))
2018-04-15 05:05:23

时区感知:

上面的代码返回一个UTC相对时区天真datetime。如果您需要一个时区感知的datetime,那么您可以使用:

datetime.replace(tzinfo=pytz.UTC))

测试:

>>> import pytz
>>> print(convert_to_datetime("Sat Apr 14 21:05:23 GMT-00:00 2018").replace(tzinfo=pytz.UTC))
2018-04-14 21:05:23+00:00

关于python时区GMT转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42306057/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com