xlwt处理excel
的思想是先创建一个excel文件:book
,然后创建sheet表:sheet
,最后对sheet表内的单元格:cell
写入数据。
小栗子:
import xlwt
if __name__ == '__main__':
book = xlwt.Workbook(encoding='utf-8')
sheet = book.add_sheet('sheet1', cell_overwrite_ok=True)
sheet.write(0, 0, u'(0,0)')
sheet.write(0, 1, u'(0,1)')
book.save('my_excel.xlsx')