中国时区不适用于 python 箭头
Time zone for china not working in python arrow
arrow.get('2016-01-01')
arrow.get(datetime.now(), 'US/Pacific')
arrow.get(datetime.now(), 'China')
arrow.get(datetime.now(), 'CT')
arrow.get(datetime.now(), 'CST')
因此,前两个语句有效,但其余 3 个试图将时间转换为中国时间的语句无效。我该如何解决这个问题?
尝试使用 Asia/Shanghai 或 zh-cn 作为时区字符串。
arrow.get('2016-01-01')
arrow.get(datetime.now(), 'US/Pacific')
arrow.get(datetime.now(), 'China')
arrow.get(datetime.now(), 'CT')
arrow.get(datetime.now(), 'CST')
因此,前两个语句有效,但其余 3 个试图将时间转换为中国时间的语句无效。我该如何解决这个问题?
尝试使用 Asia/Shanghai 或 zh-cn 作为时区字符串。