鱼C论坛

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

[已解决]为什么我的出现没显示

[复制链接]
发表于 2019-11-19 09:13:42 | 显示全部楼层 |阅读模式

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

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

x
f1=open('something.txt')
f2=open('something1.txt')
str1=[]
str2=[]
t = 0
for i in f1:
    str1.append(i)
for j in f2:
    str2.append(j)
f1.close()
f2.close()
lentgh= len(str1)
while 1:   
    if str1[t] != str2[t]:
        print('第 %d 行不同' % (t+1))
        t+=1
    else:
        lentgh -=1



RT
是不是变量t出了问题
最佳答案
2019-11-19 19:38:47
除了 2# 所说的问题外,还要加一个 try 语句:
f1=open('something.txt')
f2=open('something1.txt')
str1=[]
str2=[]
t = 0
for i in f1:
    str1.append(i)
for j in f2:
    str2.append(j)
f1.close()
f2.close()
while 1:
    try: 
        if str1[t] != str2[t]:
            print('第 %d 行不同' % (t+1))
        t+=1
    except:
        break
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-11-19 10:30:55 | 显示全部楼层
t+=1不要放在if语句体中,否则if不成立时,t一直为0,成为死循环。
还有lentgh没有作用。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-11-19 11:59:06 | 显示全部楼层
本帖最后由 jackz007 于 2019-11-19 16:04 编辑

      使用 for 代替 while 循环,代码可以简化不少:
f1 , f2 = open('something.txt') , open('something1.txt')
str1 , str2 = [x1 . strip() for x1 in f1] , [x2 . strip() for x2 in f2]
f1 . close() , f2 . close()
for t in range(len(str1)):
    if str1[t] != str2[t]:
        print('第 %d 行不同' % (t + 1))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-11-19 12:36:38 | 显示全部楼层
t +=1 放在最后面吧,不管if成立不成立t都要+1
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-11-19 19:38:47 | 显示全部楼层    本楼为最佳答案   
除了 2# 所说的问题外,还要加一个 try 语句:
f1=open('something.txt')
f2=open('something1.txt')
str1=[]
str2=[]
t = 0
for i in f1:
    str1.append(i)
for j in f2:
    str2.append(j)
f1.close()
f2.close()
while 1:
    try: 
        if str1[t] != str2[t]:
            print('第 %d 行不同' % (t+1))
        t+=1
    except:
        break
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-12 20:02

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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