我有一个电子表格,我使用 xlrd 解析为 python。
我需要把它(包括其他表格)整理成一个这样的字典列表:
[{"price4-0": 18.22, "price4-1": 21.23, "price4-4": 25.65, "quantity": 100.0, "turnaround": "1days", "size": "2 x 2"},
{"price4-0": 16.44, "price4-1": 19.43, "price4-4": 23.54, "quantity": 200.0, "turnaround": "1days", "size": "2 x 2"}...]
所以'turnaround'字典值取自工作表名,其他字典键是第一行值。我正在尝试编写它,因此如果添加了另一张纸或另一行,它仍然可以工作。基本上循环并在正确的位置添加正确的值。我有一个硬编码版本,它给出了正确的结果,但它需要是动态的:
from pprint import pprint
import xlrd
wb = xlrd.open_workbook('cardprice.xls')
pricelist = []
for i, x in enumerate(wb.sheets()):
for r in range(x.nrows)[1:]:
row_values = x.row_values(r)
pricelist.append({'turnaround':x.name,
'size':row_values[0],
'quantity':row_values[1],
'price4-0':row_values[2],
'price4-1':row_values[3],
'price4-4':row_values[4]
})
pprint(pricelist)