解决方法:修改保存时的后缀为xls import xlwt book = xlwt.Workbook(encoding='utf-8') sheet = book.add_sheet('sheet1', cell_overwrite_ok=True) for i in range(10): sheet.write(0, i, u'(0,1)') book.save('my_excel.xls')