python如何删除excel中的指定数据,并保留剩下的数据
我想要备注里无苹果、无香蕉、无梨这三个同时存在的项就不提出来,只提剩下部分这是我的代码,为什么现在输wrongdf出来,读出的数据是无苹果、无香蕉、无梨的项?
correctlist=list()
wronglist=list()
for i in range(0,len(total_df)):
if total_df.iloc[i][['备注']].str.contains('无苹果&无香蕉&无梨').bool():
if pd.isnull(total_df.iloc[i].at['编号'])==False:
correctlist.append(total_df.iloc[i][' 编号'])
wronglist=list(set(list_code) - set(correctlist))
wrongdf=total_df[total_df[' 编号'].isin(wronglist)].reset_index(drop=True)
我这个代码要怎么改呢?
如何取反值?
[此贴子已经被作者于2021-7-5 12:03编辑过]