gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 06:00:57 26 4
gpt4 key购买 nike

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

file(posfile) 

应该可以。

如果你做了类似 file = somefile.在代码的早期部分,您可能会遇到问题。因为文件不再是文件对象。

关于python - 为什么我不能将文件目录存储在变量中以与 csv.reader(file()) 一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10504584/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com