嘗試使用Python 3.x 從URL 讀取CSV 檔案時,使用者可能會遇到錯誤:「預期檔案路徑名或類似文件的對象,得到
在0.19.2 之後的Pandas 版本中,您可以直接將URL 傳遞給read_csv() 函數:
此更新程式碼直接從指定的URL讀取CSV數據,無需涉及requests.get().content的中間步驟。<code class="python">import pandas as pd # Replace the s variable with the direct URL url = "https://raw.githubusercontent.com/cs109/2014_data/master/countries.csv" c = pd.read_csv(url)</code>
以上是如何使用 Pandas 從 URL 讀取 CSV 檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!