pandas里的loc并列条件筛选

df.loc[(df['A']=='a') & df['A']=='b') ]  # 此处只能用&,用and会报错,此外也要用圆括号括起来 

否则会报错

pandas里的loc并列条件筛选_第1张图片

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