为什么减去两个UTC时间戳会导致“相减必须具有相同的时区或没有时区”?

时间:2019-02-14 14:34:10

标签: python pandas datetime

我正在尝试将Pandas日期时间与Python日期时间进行比较。

代码

cur_t = pandas.Timestamp.utcnow()

礼物:

Timestamp('2019-02-14 14:31:40.283415+0000', tz='UTC')

和代码

data_t=indata.data.loc[2000].last_time

礼物:

Timestamp('2019-02-14 14:28:32+0000', tz='UTC')

但是,从cur_t中减去data_t得出TypeError: Timestamp subtraction must have the same timezones or no timezones

这是怎么回事?为什么不能同时将同一时区进行两次比较?

0 个答案:

没有答案