pandas dataframe all() any()

找出df中全部不为0的行

df[(df!=0).all(axis=1)]

找出df中存在0的行

df[(df==0).any(axis=1)]

留言

熱門文章