openpyxl excel追加跳过第一行python

时间:2018-06-11 07:54:40

标签: python openpyxl

我想将一些数据附加到excel文件中。虽然当我这样做时它从第二行开始。有什么问题?这是我的代码:

# Instantiation
wb = openpyxl.load_workbook('post_data.xlsx')
ws = wb.active
listdir = os.listdir('processed_images\\{0}'.format(dir))

# Iterate through listdir and append every .jpg file name to the excel file
for file in listdir:
    if('.jpg' in file):
        ws.append([file])
wb.save('post_data.xlsx')
wb.close()

我也可以使用ws.cell(),但我想知道为什么这个函数会以这种方式运行以及如何更改它。谢谢!

0 个答案:

没有答案