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

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

代码示例1
# Do not reassign if you use inplace = True:

df.dropna(inplace = True)
df.reset_index(drop=True)
print(df.isnull().sum())