1
我在目錄中有CSV文件,我想打開它們中的每一個並閱讀第一列。這裏是我的代碼:讀取目錄中的所有csv文件
directory = os.path.join("c:\\","/Users/user/My Documents/test/")
for root,dirs,files in os.walk(directory):
for file in files:
f = open(file, 'r')
reader = csv.reader(f)
for row in reader:
print(row[0])
當我運行它,我得到了一個錯誤:
FileNotFoundError: [Errno 2] No such file or directory : 'file1.csv'
任何想法,爲什麼?