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