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

最佳答案

尝试:

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

08-05 23:54