Openpyxl:迭代单元格范围
Openpyxl: iterate on range of cell
我会将一系列取自列表的值写入一系列单元格。
VIEW
def create_excel(avg):
wb = load_workbook('output/file_base.xlsx')
ws = wb.active
ws['D20'] = avg[0]
ws['D21'] = avg[1]
ws['D22'] = avg[2]
ws['D23'] = avg[3]
ws['D24'] = avg[4]
ws['D25'] = avg[5]
wb.save('out.xlsx')
return 1
我会使用循环来完成此操作,并且我尝试了以下方法:
start, stop = 20,26
for index, row in enumerate(ws.iter_rows()):
if start < index < stop:
ws.cell[index] = avg[index]
但是 returns:
list index out of range
我该怎么做?我正在使用 openpyxl 2.3
您可以按如下方式指定行和列:
import openpyxl
avg = [10, 20, 25, 5, 32, 7]
wb = openpyxl.load_workbook('output/file_base.xlsx')
ws = wb.active
for row, entry in enumerate(avg, start=20):
ws.cell(row=row, column=4, value=entry)
wb.save('out.xlsx')
这会遍历您的平均值,并同时使用 Python 的 enumerate
函数为您计算。通过告诉它以值 20 开始,它可以用作写入单元格的行值。
我会将一系列取自列表的值写入一系列单元格。
VIEW
def create_excel(avg):
wb = load_workbook('output/file_base.xlsx')
ws = wb.active
ws['D20'] = avg[0]
ws['D21'] = avg[1]
ws['D22'] = avg[2]
ws['D23'] = avg[3]
ws['D24'] = avg[4]
ws['D25'] = avg[5]
wb.save('out.xlsx')
return 1
我会使用循环来完成此操作,并且我尝试了以下方法:
start, stop = 20,26
for index, row in enumerate(ws.iter_rows()):
if start < index < stop:
ws.cell[index] = avg[index]
但是 returns:
list index out of range
我该怎么做?我正在使用 openpyxl 2.3
您可以按如下方式指定行和列:
import openpyxl
avg = [10, 20, 25, 5, 32, 7]
wb = openpyxl.load_workbook('output/file_base.xlsx')
ws = wb.active
for row, entry in enumerate(avg, start=20):
ws.cell(row=row, column=4, value=entry)
wb.save('out.xlsx')
这会遍历您的平均值,并同时使用 Python 的 enumerate
函数为您计算。通过告诉它以值 20 开始,它可以用作写入单元格的行值。