将数据附加到现有的Excel电子表格

时间:2015-02-06 10:24:42

标签: python excel

我写了以下函数来完成这项任务。

def write_file(url,count):

    book = xlwt.Workbook(encoding="utf-8")
    sheet1 = book.add_sheet("Python Sheet 1")
    colx = 1
    for rowx in range(1):

        # Write the data to rox, column
        sheet1.write(rowx,colx, url)
        sheet1.write(rowx,colx+1, count)


    book.save("D:\Komal\MyPrograms\python_spreadsheet.xls")

对于从给定的.txt文件中获取的每个url,我希望能够计算标记的数量并将其打印到每个excel文件中。我想覆盖每个URL的文件,然后附加到excel文件。

1 个答案:

答案 0 :(得分:5)

您应使用xlrd.open_workbook()加载现有Excel文件,使用xlutils.copy创建可写副本,然后执行所有更改并将其另存为。

类似的东西:

from xlutils.copy import copy    
from xlrd import open_workbook

book_ro = open_workbook("D:\Komal\MyPrograms\python_spreadsheet.xls")
book = copy(book_ro)  # creates a writeable copy
sheet1 = book.get_sheet(0)  # get a first sheet

colx = 1
for rowx in range(1):
    # Write the data to rox, column
    sheet1.write(rowx,colx, url)
    sheet1.write(rowx,colx+1, count)

book.save("D:\Komal\MyPrograms\python_spreadsheet.xls")