鱼C论坛

 找回密码
 立即注册
查看: 3478|回复: 2

[已解决]作业27,动动手 0

[复制链接]
发表于 2022-7-9 22:58:26 | 显示全部楼层 |阅读模式
1鱼币
s = input("请输入一个字符串:")
   
res = []
for each in s:
    if res and res[-1].lower() == each.lower() and res[-1] != each:   疑问1:单单一个res能有什么作用?res现在不就是个空列表吗,那res[-1]是啥,下面的pop也执行不了呀
        res.pop()
    else:
        res.append(each)
   
for each in res:
    print(each, end='')

疑问2:越想越迷,能仔细讲讲这个吗
最佳答案
2022-7-9 22:58:27
if res and res[-1].lower() == each.lower() and res[-1] != each:  
        res.pop()
    else:
        res.append(each)

从这开始看 res and res[-1].lower() == each.lower() and res[-1] != each
循环1,res 空(假), and 后面的不用判断,if 不执行。(这种机制叫断言)。执行else
循环2,res 有数据(值),判断 and后面的表达式  res[-1]列表中的最后一个数据。
其它的不用解释了,这2点能明白,你就全明白了

最佳答案

查看完整内容

if res and res[-1].lower() == each.lower() and res[-1] != each: res.pop() else: res.append(each) 从这开始看 res and res[-1].lower() == each.lower() and res[-1] != each 循环1,res 空(假), and 后面的不用判断,if 不执行。(这种机制叫断言)。执行else 循环2,res 有数据(值),判断 and后面的表达式 res[-1]列表中的最后一个数据。 其它的不用解释了,这2点能明白,你就全明白了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-7-9 22:58:27 | 显示全部楼层    本楼为最佳答案   
if res and res[-1].lower() == each.lower() and res[-1] != each:  
        res.pop()
    else:
        res.append(each)

从这开始看 res and res[-1].lower() == each.lower() and res[-1] != each
循环1,res 空(假), and 后面的不用判断,if 不执行。(这种机制叫断言)。执行else
循环2,res 有数据(值),判断 and后面的表达式  res[-1]列表中的最后一个数据。
其它的不用解释了,这2点能明白,你就全明白了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-9-22 19:44:23 | 显示全部楼层
刚学习到这里
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-10 17:23

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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