鱼C论坛

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

小白的代码出错了啦,他说TypeError: string indices must be integers

[复制链接]
发表于 2020-7-19 10:17:40 | 显示全部楼层 |阅读模式

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

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

x
我是不是索引用错了原题是1. 请用已学过的知识编写程序,找出小甲鱼藏在下边这个长字符串中的密码,密码的埋藏点符合以下规律:
    a) 每位密码为单个小写字母
    b) 每位密码的左右两边均有且只有三个大写字母
str1 = 'ABSaDKSbRIHcRHGcdDIF'
smallwrite = 'qwertyuiopasdfghjklzxcvbnm'
bigwrite = 'QWERTYUIOPASDFGHJKLZXCVBNM'
i = 0
z = list()
while str1[i] != '':
    if str1[i] in smallwrite and str1[i-1, i-2, i-3, i+1, i+2, i+3] in bigwrite:
        z += str1[i]
        i += 4
    else:
        i +=1
print('找出的密码为', z)

Traceback (most recent call last):
  File "C:/Users/86156/Desktop/解忧杂货店/python/game.py/find the regular code.py", line 7, in <module>
    if str1[i] in smallwrite and str1[i-1, i-2, i-3, i+1, i+2, i+3] in bigwrite:
TypeError: string indices must be integers
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-7-19 10:44:29 | 显示全部楼层
本帖最后由 Twilight6 于 2020-7-19 10:45 编辑

[b]


str1[i-1, i-2, i-3, i+1, i+2, i+3]


没有这种语法操作,切片操作只有三个参数分别是:

start 开始位置参数、end 结尾位置参数、step 步长,而且是用冒号隔开



你这里应该用字符串方法 islower() 和 isupper() 参考代码:
str1 = '''ABSaDKSbRIHcRHGcdDIF'''
smallwrite = 'qwertyuiopasdfghjklzxcvbnm'
str1 = str1.replace('\n','')   # 去掉 \n 换行符 ,对这串字符串没什么用用,对甲鱼哥的字符串才有效果

z = list()
for i in range(3,len(str1)):
    if str1[i] in smallwrite:
        if str1[i-3:i].isupper() and str1[i+1:i+4].isupper() :
            if i-4 < 0 and str1[i+4].islower():
                z += [str1[i]]
            elif str1[i-4].islower() and str1[i+4].islower():
                z += [str1[i]]

print('找出的密码为', z)
[/b]
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 3 反对 0

使用道具 举报

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

本版积分规则

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

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

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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