判断某列是否有NaNdf['$open'].isnull().any() # 判断open这一列列是否有 NaN判断某列是否全部为NaNdf['$open'].isnull().all() # 判断open列是否全部为NaN df.isnull().all() # 判断某列是否全部为NaN