为什么我不能将文件目录存储在变量中以与csv.reader(file())一起使用?

时间:2012-05-08 18:46:12

标签: python variables filepath

我需要将文件目录存储在变量中,因为稍后会使用它。在我下面的脚本中,我想打印出内容,但我得到了TypeError: 'file' object is not callable

剧本:

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

1 个答案:

答案 0 :(得分:2)

尝试:

posfile = 'C:/Users/name/Desktop/textfile.txt'
csv_data=csv.reader(open(posfile, 'rb'))
count_test = 0
for row in csv_data:
    count_test = count_test + 1
    print count_test, row

您可能还想检查您是否在代码中的其他位置更改了文件的值。

file(posfile) 

应该有用。

如果你做过像file = somefile这样的事情。在代码的早期,您可能会遇到问题。因为文件不再是文件对象。