7.通过pandas去除一个sheet重复行的数据
1 # encoding:utf-8 2 3 import pandas as pd 4 5 6 class QuChongFu(): 7 def __init__(self): 8 self.qcfxls() 9 10 def qcfxls(self): 11 # 读取excel中的数据 12 data = pd.DataFrame(pd.read_excel('../totest81.xlsx', 'BOM Mapping List')) 13 # 查看获取的数据 14 #print(data) 15 # 查看去除重复行的数据 16 no_re_row = data.drop_duplicates() 17 print(no_re_row) 18 # 将去除重复行的数据输出到excel表中 19 no_re_row.to_excel("test2.xlsx", index=False) 20 print("去除重复数据OK") 21 22 23 if __name__ == '__main__': 24 oxl = QuChongFu()