如何利用python来查看数据中有没有缺失值?

(1)代码:

print(df.isnull().any())

(2)结果显示: true表示有缺失值,false表示无缺失值。
如何利用python来查看数据中有没有缺失值?_第1张图片

你可能感兴趣的:(Python,python)