import pandas
def data_to_excel(data,row):
length = len(data)
number = length //row
for i in range(number+1):
data[i*row:(i+1)*row].to_excel('./path.xlsx',index=False)
python中批量根据自己指定数据量导出数据到excel表格,可以用excel存储超100w行的数据,分多个表格
于 2022-02-23 16:55:25 首次发布