2017年7月10日 星期一

Python - How to append new rows from pandas dataframe to existing excel - 如何將新資料append到已存在的excel檔

Python version :Python 3.6.0 :: Anaconda 4.3.1 (64-bit)
Pandas version :0.19.2
System version :Windows 10
  1. import pandas as pd
  2. import os
  3. from datetime import datetime
  4. # def
  5. # create dir
  6. def mkdir(path):
  7. import os
  8. if os.path.exists(path) == False:
  9. os.makedirs(path)
  10. print('mkdir:',path)
  11. elif os.path.exists(path) == True:
  12. print('dir already exist:',path)
  13. # 建立樣本資料
  14. number = [1,2,3,4,5]
  15. sex = ['male','female','female','female','male']
  16. df_new = pd.DataFrame()
  17. df_new['number'] = number
  18. df_new['sex'] = sex
  19. df_new
  20. # excel存放的資料夾
  21. file_dir='E:/download/tmp/python/%s/' % (datetime.now().strftime("%Y%m%d"))
  22. # 若資料夾不存在,建立指定資料夾
  23. mkdir(file_dir)
  24. file_out=file_dir+'test.xlsx'
  25. # 如果檔案不存在,建立檔案
  26. if os.path.exists(file_out) == False:
  27. df_new.to_excel(file_out,index=False)
  28. # 如果檔案存在,append
  29. elif os.path.exists(file_out) == True:
  30. df_old = pd.read_excel(file_out)
  31. df_combine = df_old.append(df_new)
  32. df_combine.to_excel(file_out,index=False)
執行結果:

沒有留言:

張貼留言