python儲存超大資料excel表格——大於65532
一般的excel表格,只能儲存小於65532行資料,大於這個資料程式就會異常退出,因此需要用下面程式碼來儲存一個xlsx格式表格
原始碼
import openpyxl
import math
import time
output_file_name = 'test_11192347.xlsx'
if not output_file_name.endswith('.xlsx'):
output_file_name += '.xlsx'
wb = openpyxl.Workbook()
ws = wb.active
title_data = ('a', 'b', 'c', 'd', 'e', 'f')
for i in range(555535):
for j in range(3):
ws.cell(row=i + 1, column=j + 1).value = '蘇州好'
wb.save(filename=output_file_name)
效果圖
相關文章
- Python匯入Excel表格資料並以字典dict格式儲存PythonExcel
- 基於python的大資料分析-pandas資料儲存(程式碼實戰)Python大資料
- python 操作 Excel 表格PythonExcel
- Python按條件刪除Excel表格資料的方法PythonExcel
- 基於vue實現web端超大資料量表格VueWeb大資料
- 如何使用表格儲存控制檯進行資料監控
- Python讀取Excel表格PythonExcel
- 大資料元件-Hive部署基於MySQL作為後設資料儲存大資料元件HiveMySql
- 爬蟲資料儲存--基於MonogoDB爬蟲MonoGo
- 資料儲存--檔案儲存
- vue匯出excel資料表格功能VueExcel
- 【Python基礎】Python處理Excel檔案,進行篩選資料、排序等操作及儲存新的Excel檔案PythonExcel排序
- [python] 基於Tablib庫處理表格資料Python
- 表格儲存TableStore2.0重磅釋出,提供更強大資料管理能力大資料
- 關於InnoDB表資料和索引資料的儲存索引
- #第9篇分享:python資料儲存-MySQL資料庫PythonMySql資料庫
- Python中高階資料儲存及應用Python
- python基礎語法 - 資料儲存模型Python模型
- Python爬蟲之使用MongoDB儲存資料Python爬蟲MongoDB
- 資料儲存(1):從資料儲存看人類文明-資料儲存器發展歷程
- vue2.0 匯出Excel表格資料VueExcel
- 如何檢視和分析Excel表格資料Excel
- 將資料庫中資料匯出為excel表格資料庫Excel
- 大資料檔案儲存系統HDFS大資料
- 用於大資料儲存:國產10G光纖網路卡大資料
- 大資料儲存平臺之異構儲存實踐深度解讀大資料
- Python中用OpenPyXL處理Excel表格PythonExcel
- python讀寫Excel表格程式碼PythonExcel
- TiDB資料儲存TiDB
- 資料儲存:CoreData
- iOS 資料儲存iOS
- 關於Mysql資料儲存,你瞭解多少?MySql
- oracle使用儲存過程將表資料以excel格式匯出Oracle儲存過程Excel
- Python資料儲存方式有幾種?如何使用?Python
- 小米大資料儲存服務的資料治理實踐大資料
- 原來大資料 Hadoop 是這樣儲存資料的大資料Hadoop
- 資料庫文件編寫,如何通過Navicat把表導成表格?資料庫快速匯出為excel表格資訊,excel匯出到word表格資料庫Excel
- node 抓取api資料匯出為excel表格APIExcel