提问者:小点点

带pandas的excel中的Python读取问题


嗨,我是开源技术的新手-我正在使用Anaconda3-5.1。0-Windows-x86_64

import pandas as pd 
from pandas import ExcelWriter 
from pandas import ExcelFile 
path= "D:\sample.xlsx" 
print(path) 
df = pd.read_excel(path, sheet_name = 'Sheet1') 
print('Column headings:') 
print(df.columns) 

错误消息是FileNotFoundError:[Errno 2]没有这样的文件或目录:'D:\sample.xlsx'-

我试图读取'D:\sample.xlsx',但函数试图打开文件为'D:\sample.xlsx'。

任何人都可以就这个问题提出建议,或者让我知道更多需要的细节。


共1个答案

匿名用户

改变

path= "D:\sample.xlsx"

path= r"D:\sample.xlsx" or path= "D:\\sample.xlsx"