我正在尝试将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
这是怎么回事?为什么不能同时将同一时区进行两次比较?