python导出数据到excel文件的方法:1、调用Workbook()对象中的add_sheet()方法 1 2 wb = xlwt.Workbook()ws = wb.add_sheet('A Test Sheet')2、通过add_sheet()方法中的write()函数将数据写入到excel中,然后使用save()函数保存excel文件 1 2 3 4 5 6 7 ws.write(0, 0, 1234.56, styl 可以使用 Pyt...