自我练习1

作者: 奥斯特洛夫_兔斯基 | 来源:发表于2018-08-12 22:43 被阅读0次

    环境:windows10,powershell

    Py版本:3.6.5

    问题描述:

    今天想写个脚本将三个文档中的内容整理到第一个文档中,写了下面的几句:

    from sys import argv
    script,file1,file2,file3 = argv
    data1 = (open(file2)).read

    结果报错:

    built-in method read of _io.TextIOWrapper object at 0x0010AB30

    原因:read 后面漏了()

    相关文章

      网友评论

        本文标题:自我练习1

        本文链接:https://www.haomeiwen.com/subject/bzmebftx.html