1

我需要将文件目录存储在一个变量中,因为它将在以后使用。在下面的脚本中,我想打印出内容,但我得到了一个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
4

1 回答 1

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. 在代码的前面,您可能会遇到问题。因为 file 不再是一个文件对象。

于 2012-05-08T18:50:32.003 回答