欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

400W+CSV數據,可否使用ACCESS快捷拆分成多個EXCEL文件?

夏志豪2年前13瀏覽0評論

python

importpandasaspd

df=pd.read_csv('urcsvfilepath')

size=10000#modifyittothesizeuwant

num=int(df.shape[0]/size)

foriinrange(0,num)

df.iloc[size*i:size*(i+1),:].to_excel('data'+str(i)+'.xls')

df.iloc[size*num:,:].to_excel('data'+str(num)+'.xls')