我有一个来自API调用的系列,它以格式提供了索引

timeseries.index.values[0]

>>> Timestamp('2019-10-25 15:33:26.068569856+0000', tz='tzutc()')


然后我在时间戳上附加一些数据:datetime.utcnow().replace(tzinfo=pytz.UTC),可悲的是,它具有另一种格式

timeseries.index.values[-1]

>>> Timestamp('2019-10-25 15:33:27.388853+0000', tz='UTC')]


这将导致一些错误。如何创建原始格式的时间戳(tz ='tzutc())?

最佳答案

from dateutil.tz import *

datetime.now(tzutc())

关于python - 将时间戳从tz ='UTC'更改为tz ='tzutc()',我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58561661/

10-09 17:13