xlwtを使用して既存のワークブックに書き込むxlwt、xlrd、xlutilsのこれらのリンクとその他のリンクを調べ ました
from xlutils.copy import copy
from xlrd import open_workbook
from xlwt import easyxf
rb = open_workbook('example.xls',formatting_info=True)
r_sheet = rb.sheet_by_index(0)
print r_sheet
print r_sheet.name
wb = copy(rb)
w_sheet = wb.get_sheet(0)
print w_sheet.name
w_sheet.save('example.html') #it throws an error in the last line saying "AttributeError: 'Worksheet' object has no attribute 'save'"
Pythonを使用してワークシートをHTMLファイルとして単独で保存するにはどうすればよいですか