鱼C论坛

 找回密码
 立即注册
查看: 1270|回复: 4

[已解决]python 零基础入门学习29节课后作业求解

[复制链接]
发表于 2020-8-6 13:34:06 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
f1 = open("F:/something.txt")
f2 = open("F:/poetry.txt")
   
str1 = []
str2 = []
for each_line in f1:
    str1.append(each_line)
for each_line in f2:
    str2.append(each_line)
   
length = len(str1)
f = open("F:/difference.txt","w")
for i in range(length):
    if str1[i] != str2[i]:
        string = ("第",i,"行不一样")
        f.wtritelines(string)
    f.close()
   

f = open("F:/difference.txt")
f.read()



AttributeError                            Traceback (most recent call last)
<ipython-input-8-e82872c8ac30> in <module>
     14     if str1[i] != str2[i]:
     15         string = ("第",i,"行不一样")
---> 16         f.wtritelines(string)
     17     f.close
     18

AttributeError: '_io.TextIOWrapper' object has no attribute 'wtritelines'
最佳答案
2020-8-6 13:38:34
Bonnie_9999 发表于 2020-8-6 13:37
f1 = open("F:/something.txt")
f2 = open("F:/poetry.txt")
   

这样试试:
f1 = open("F:/something.txt")
f2 = open("F:/poetry.txt")
   
str1 = []
str2 = []
for each_line in f1:
    str1.append(each_line)
for each_line in f2:
    str2.append(each_line)
   
length = len(str1)
f = open("F:/difference.txt","w")
for i in range(length):
    if str1[i] != str2[i]:
        string = ("第",i,"行不一样")
        f.writelines(string)
f.close()
   

f = open("F:/difference.txt")
f.read()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-8-6 13:34:30 | 显示全部楼层
方法名拼错了,应该是 writeline 不是 wtriteline
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-6 13:37:21 | 显示全部楼层
f1 = open("F:/something.txt")
f2 = open("F:/poetry.txt")
   
str1 = []
str2 = []
for each_line in f1:
    str1.append(each_line)
for each_line in f2:
    str2.append(each_line)
   
length = len(str1)
f = open("F:/difference.txt","w")
for i in range(length):
    if str1[i] != str2[i]:
        string = ("第",i,"行不一样")
        f.writelines(string)
    f.close()
   

f = open("F:/difference.txt")
f.read()


ValueError                                Traceback (most recent call last)
<ipython-input-1-8c247e5c6369> in <module>
     14     if str1[i] != str2[i]:
     15         string = ("第",i,"行不一样")
---> 16         f.writelines(string)
     17     f.close()
     18

ValueError: I/O operation on closed file.
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-6 13:38:34 | 显示全部楼层    本楼为最佳答案   
Bonnie_9999 发表于 2020-8-6 13:37
f1 = open("F:/something.txt")
f2 = open("F:/poetry.txt")
   

这样试试:
f1 = open("F:/something.txt")
f2 = open("F:/poetry.txt")
   
str1 = []
str2 = []
for each_line in f1:
    str1.append(each_line)
for each_line in f2:
    str2.append(each_line)
   
length = len(str1)
f = open("F:/difference.txt","w")
for i in range(length):
    if str1[i] != str2[i]:
        string = ("第",i,"行不一样")
        f.writelines(string)
f.close()
   

f = open("F:/difference.txt")
f.read()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-6 13:49:21 | 显示全部楼层
谢谢,明白了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-19 14:25

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表