1
我需要將文件目錄存儲在變量中,因爲稍後會使用它。在我的腳本中,我想打印出內容,但我得到了一個TypeError: 'file' object is not callable
。爲什麼我不能將文件目錄存儲在變量中以便與csv.reader(file())一起使用?
腳本:
posfile = 'C:/Users/name/Desktop/textfile.txt'
csv_data=csv.reader(file(posfile))
count_test = 0
for row in csv_data:
count_test = count_test + 1
print count_test, row
我沒有得到那個錯誤,並且你的代碼看起來很好 - 無論如何,將一個文件名存儲在一個變量中沒有任何問題。你使用的是什麼版本的Python? –
Python 2.6我認真得到了那個錯誤 – ThanaDaray
我猜想在這個代碼上面的某個地方你做了類似'file = open(...)' – Daenyth