1. 程式人生 > >利用Python的 with open功能載入讀取py本地當前目錄檔案問題

利用Python的 with open功能載入讀取py本地當前目錄檔案問題

學習matplotlib時候練習載入本地檔案資料,使用Python的 with open功能讀取當前目錄檔案example.csv

開始只在with open引數框中輸入 example.csv ,沒有寫全檔案目錄地址(CSV檔案和py檔案在同一個資料夾目錄裡面)

import matplotlib.pyplot as plt
import csv


x = []
y = []


with open('D:\python3.6\matplotlib\example.csv','r') as csvfile:
plots = csv.reader(csvfile,delimiter =',')
for row in plots:
x.append(int(row[0]))
y.append(int(row[1]))


plt.plot(x,y,label='Loaded from csvfile')
plt.xlabel('x')
plt.ylabel('y')
plt.title('Interesting Grap')
plt.legend()
plt.show()

再執行py,成功!

希望有高人指點為什麼需要加 全檔案目錄地址。謝謝!


 example.csv 資料內容參考:

1,5
2,3
3,4
4,7
5,4
6,3
7,5
8,7
9,4
10,4