1. wb=xlrd.open_workbook('2018年业绩表.xls')
    2. nwb=xlwt.Workbook(encoding='uft-8');nws=nwb.add_sheet('筛选结果')
    3. r=0
    4. for ws in wb.sheets():
    5. col=ws.col_values(1)[1:]
    6. l=[str(int(amount)) for amount in col if amount>=20000]
    7. nws.write(r,0,ws.name)
    8. nws.write(r,1,'\\'.join(l))
    9. r+=1
    10. nwb.save('筛选结果.xls')