datetime.time 的时区转换

Conversion of timezone of datetime.time

我正在编写 Python 代码,使用箭头库将字符串(无日期)中的时区(默认为 UTC)转换为另一个时区。

示例字符串值为:18:30+0000

代码片段是:

start      = '18:30+0000'
start_time = arrow.get(start,'hh:mmZ')

print(start_time.format('hh:mm A ZZ'))

print(start_time.to('Australia/Melbourne').format('hh:mm A ZZ'))
# This should print 05:30 AM +11:00 - but showing 04:09 AM +09:39

我也尝试过转换到其他时区。

print(start_time.to('Europe/London').format('hh:mm A ZZ'))
# This should print 06:30 PM +00:00 - but showing 06:28 PM -00:01

现在获取 UTC,然后将其转换为不同的时区,工作正常

print(arrow.utcnow().to('Australia/Melbourne').format('hh:mm A ZZ'))

解决方案: 如果我们没有日期值,我们必须添加临时日期值进行转换。

def convert_timezone(time_to_convert,timezone):
  time_to_convert='20111111 '+time_to_convert
  return arrow.get(time_to_convert).to(timezone)

print(convert_timezone('18:30+0000','Australia/Melbourne').format('hh:mm A ZZ'))

向输入字符串添加适当的日期,这会如您所愿:

import arrow

start = '2021-02-01 18:30+0000'
start_time = arrow.get(start)
print(start_time.to('Australia/Melbourne').format('hh:mm A ZZ'))
# 05:30 AM +11:00