Coastharukun 2016-08-13 09:56 采纳率: 0%
浏览 1158

【Python求教】这段代码不知道哪里错了。

from sys import argv
from os.path import exists

script, from_file, to_file = argv

print "We will copy %s to %s." % (from_file, to_file)

indata = open(from_file).read()

print "The input file is %d bytes long." % len(indata)

print "Does the output file exist? %r" % exists(to_file)
print "Ready, hit enter to continue, CTRL-C to abort."
raw_input()

txt = open(to_file, 'w').write(indata)

print txt.read()

一直显示
AttributeError:'Nonetype'object has no attribute 'read'.

  • 写回答

2条回答 默认 最新

  • kimixuchen 2016-08-13 10:37
    关注
        txt = open(to_file, 'w').write(indata)
    

    这段代码执行完后,txt并不是file对象,而是write(indata)函数所返回的对象,根据python文档

    此函数返回None,所以会产生上述错误。

    评论

报告相同问题?

悬赏问题

  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示