Python无法读取文件TypeError:'file'类型的对象没有len()[重复]
Posted
技术标签:
【中文标题】Python无法读取文件TypeError:\'file\'类型的对象没有len()[重复]【英文标题】:Python cant read file TypeError: object of type 'file' has no len() [duplicate]Python无法读取文件TypeError:'file'类型的对象没有len()[重复] 【发布时间】:2015-04-22 03:57:21 【问题描述】:from sys import argv
from os.path import exists
script, from_file, to_file = argv
print "Copying from %s to %s" % (from_file, to_file)
in_file = open(from_file, 'w')
print "The input file is %d bytes long" % len(in_file)
print "Does the output file exist? %r" % exists(to_file)
print "Ready, hit RETURN to continue, CTRL-C to abort."
raw_input()
out_file = open(to_file, 'w')
out_file.write(in_file)
print "Alright, all done."
out_file.close()
in_file.close()
我得到的错误 TypeError: 'file' 类型的对象没有 len()
我已将 in_file 变量设置为写入模式,所以我不明白问题出在哪里。
【问题讨论】:
如果你说它是重复的,也许可以发送一个链接到“重复”并回答问题? 链接在问题的顶部。 【参考方案1】:您需要以读取模式打开文件。
in_file = open(from_file)
f = in_file.read()
print "The input file is %d bytes long" % len(f)
【讨论】:
感谢您的帮助。【参考方案2】:您必须以读取模式打开文件,然后才能读取文件内容并计算内容大小:
in_file = open(from_file, 'r')
f = in_file.read()
print "The input file is %d bytes long" % len(f)
有关文件大小,请查看:link
【讨论】:
感谢您的帮助。以上是关于Python无法读取文件TypeError:'file'类型的对象没有len()[重复]的主要内容,如果未能解决你的问题,请参考以下文章
TypeError:无法读取从带有已定义模板的 JSON 文件中读取的未定义属性(读取“array_google”)