openpyxl写入百万级数据(替代xlwt row index was 65536, not allowed by)
#因为xlwt不支持大数据插入 所以用openpyxl 支持一百万的数据下面展示一些 内联代码片。输入文件名,sheet名称,Excel的标题list 和内容的list再次写入数据只能替换原Excel的内容def WriteInExcel2(dest_filename,ws1sheetname,ws1title,ws1content): wb = Workbook() dest_filename = dest_filename ws1 = wb.active w