效果预览
代码实现
import xlrd
import xlwt
from xlutils.copy import copy
xlsx=xlrd.open_workbook('7月下旬入库表.xls')
table=xlsx.sheet_by_index(0)
all_data=[]
for n in range(1,table.nrows):
company=table.cell(n,1).value
price=table.cell(n,3).value
weight=table.cell(n,4).value
data={
'company':company,'weight':weight,'price':price}
all_data.append(data)
a_weight=[]
a_total_price=[]
b_weight=[]
b_total_price=[]
c_weight=[]
c_total_price