鱼C论坛

 找回密码
 立即注册
查看: 1778|回复: 1

print不输出值

[复制链接]
发表于 2021-11-2 14:28:07 | 显示全部楼层 |阅读模式

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

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

x
python学习第20课,课后习题,按照参考答案运行,不输出任何值,请问各位大神,代码哪里出问题了,谢谢
题目为,密码为小写,切每个密码左右两侧有且仅有三个大写字母
str1='ASDiKDF'
countA=0
countB=0
countC=0
length=len(str1)
for i in range(length):
    if str1[i]=='\n':
        continue
    if str1[i].isupper():
        if countB==1:
           countC +=1
           countA =0
        else:
            countA+=1
        continue
    if str1[i].islower() and countA==3:
        countB=1
        countA=0
        target=i
        continue
    if str1[i].islower() and countC==3:
       print(str1[target],end='')
    countA=0
    countB=0
    countC=0
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-11-2 14:41:39 | 显示全部楼层
本帖最后由 jackz007 于 2021-11-2 14:56 编辑

        你可以把实际的 str1 替换到下面代码中进行测试。
str1 = 'ASDiKDF'
s , p = 'a' + '' . join(str1 . split('\n')) + 'a' , ''
for i in range(4 , len(s) - 4):
    if s[i] . islower() and s[i - 4] . islower() and s[i + 4] . islower() and s[i - 3 : i] . isupper() and s[i + 1 : i + 4] . isupper():
        p += s[i]
print(p)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

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

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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