我有一個關於將xlsx文件導入Python的基本問題。我已經檢查了許多關於同一主題的回覆,但是我仍然無法將我的文件導入Python,無論我嘗試什麼。這裏是我的代碼和錯誤我收到:將excel文件導入python
import pandas as pd
import xlrd
file_location = 'C:\Users\cagdak\Desktop\python_self_learning\Coursera\sample_data.xlsx'
workbook = xlrd.open_workbook(file_location)
錯誤:
IOError: [Errno 2] No such file or directory: 'C:\\Users\\cagdak\\Desktop\\python_self_learning\\Coursera\\sample_data.xlsx'
你的問題是,該文件是找不到,不是導入問題:驗證文件處於您認爲處於的位置。 – boardrider
提示:您是否確認該位置存在xlsx文件? – karthikr
是的,它的確如此。我在這裏複製文件夾路徑:C:\ Users \ cagdak \ Desktop \ python_self_learning \ Coursera和excel文件的名稱是:sample_data –