gpt4 book ai didi

python - 使用arrow python将人性化时间转换为UTC时间

转载 作者:太空宇宙 更新时间:2023-11-03 15:50:08 24 4
gpt4 key购买 nike

我有以下格式的时间。

'August 28, 2017 Mon  03:30 am -  04:00 am'

我想使用箭头将其转换为以下 utc 格式。

time =[u'2017-08-28T03:30:00+00:00', u'2017-08-28T04:00:00+00:00']

我能够通过非常复杂的字符串操作来做到这一点,但我认为有一种聪明的方法可以使用箭头来做到这一点。

最佳答案

我的一个 friend 很快就把它拼凑起来并发给我了。认为它可能对其他人有帮助。

import arrow
from dateutil.parser import *
t = 'Fri October 20 05:15 pm - 06:15 pm'
q = t.split('-')[0].strip()
x = t.split(' ')
x = ' '.join(x[:3]) +' '+ x[-2] + ' '+ x[-1]

arrow.get(parse(q)), arrow.get(parse(x))

关于python - 使用arrow python将人性化时间转换为UTC时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47432401/

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