xxxxxxxxxx
from xlrd import open_workbook
from xlutils.copy import copy
rb = open_workbook("file.xls")
wb = copy(rb) # Copy read file
s = wb.get_sheet(0) # Specify sheet of xls file to edit
s.write(row,column,data_to_insert) # Insert data in a cell in xls file
wb.save('file.xls') # Save changes in file
xxxxxxxxxx
from xlrd import open_workbook
from xlutils.copy import copy
rb = open_workbook("file.xls")
wb = copy(rb) # Copy read file
s = wb.get_sheet(0) # Specify sheet of xls file to edit
s.write(row,column,data_to_insert) # Insert data in a cell in xls file
wb.save('file.xls') # Save changes in file