📌  相关文章
📜  'numpy.float64' 对象没有属性 'isnull' - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:18.443000             🧑  作者: Mango

代码示例1
for element in my_series:
    if type(element) == float and pd.isna(element):
        print('do A')
    else:
        print('do B')