标签: python pandas
我想知道为什么
pandas.Series([numpy.nan]).astype("bool")
是True?
True
答案 0 :(得分:4)
可能是因为np.nan个对象本身 truthy :
np.nan
>>> bool(np.nan) True