字典KeyError对于字典中已经存在的键

时间:2019-06-21 02:23:42

标签: python

我有一个字典,其键是一堆numpy.datetime64元素。但是,当我尝试访问dict中已经存在的键时,会弹出KeyError异常。

a = np.datetime64('2018-12-28T00:00:00.000000')
result[a]

这给出了错误

sorted(result.keys())[-113]  == a

result[[i for i in result.keys() if i == a][0]]

这给出了我想要的值

0 个答案:

没有答案