Version
Python版本:Python 3.6.0 :: Anaconda 4.3.1 (64-bit)
Pandas版本:0.19.2
系統版本:Windows 10
Codes
將 dataframe 寫入excel檔案
import pandas as pd
file_path=r'E:\download\tmp\test.xlsx'
# 相對路徑的寫法
file_path='./tmp/test.xlsx'
df_name.to_excel(file_path,sheet_name='Sheet1',index=False)
讀入excel檔案,轉成dataframe
import pandas as pd
# Windows路徑的寫法
file_path=r'E:\download\tmp\test.xlsx'
# 相對路徑的寫法
file_path='./tmp/test.xlsx'
df_name= pd.read_excel(file_path,sheet_name='Sheet1')
沒有留言:
張貼留言