python: raise KeyError(key) from err KeyError:0 从.xlsx导入的数据,里面有空值,我 .describe()的时候没有显示空值,数量是对的,adfuller的时候发现了。 print显示是nan,但是没法判定为空。 x==0 x is None x == ‘nan’ #都不能判定为空 因为type(x)是 numpy.float64 最后解决办法: np.isnan(x) #可以判定为空,然后重新赋值。