pythonskill 发表于 2021-6-8 20:38:59

python第二讲作业求组

1. 请用已学过的知识编写程序,找出小甲鱼藏在下边这个长字符串中的密码,密码的埋藏点符合以下规律:Y5d|MAp
Y5d|MAp
    a) 每位密码为单个小写字母Powered by bbs.fishc.com
    b) 每位密码的左右两边均有且只有三个大写字母qH{]*ZR

求助各位大神,为什么我这样写不行,得不到正确的答案呀 :
str1 = """拷贝来的字符串"""


def Find(Str):
    str1 = ""
    length = len(Str)

    for i in range(3, length-3):
      if Str == "\n":
            continue
      if i == 3 or i == length-3:
            if Str.islower():
                if Str.isupper():
                  if Str.isupper():
                        str1 += Str
      else:
            if Str.islower():
                if Str.isupper():
                  if Str.islower():
                        if Str.isupper():
                            if Str.islower():
                              str1 += Str
            
      
               

    return str1


print(Find(str1))

fc5igm 发表于 2021-6-8 20:45:52

本帖最后由 fc5igm 于 2021-6-8 21:10 编辑

你的问题:
str1 = """拷贝来的字符串"""
str1 = ""
你把第一个拷贝来的字符串那个变量,先换成Str1试试


我写的答案
stri='''(那堆字符)'''
ver1=0
ps=[]
for i in range(3,len(stri)-3):
    if stri.islower():
      for n in [-3,-2,-1,1,2,3]:
            if stri.isupper():
                ver1+=1
      if ver1==6:
            if (stri.isupper()==False if i-4>=0 else True) and stri.isupper()==False:
                ps.append(stri)
      ver1=0
ps=''.join(ps)
print('密码是:',ps)

小甲鱼的答案
str1 = '''ABSaDKSbRIHcRHGcdDIF'''

countA = 0# 统计前边的大写字母
countB = 0# 统计小写字母
countC = 0# 统计后边的大写字母
length = len(str1)

for i in range(length):
    if str1 == '\n':
      continue

    """
    |如果str1是大写字母:
    |-- 如果已经出现小写字母:
    |-- -- 统计后边的大写字母
    |-- 如果未出现小写字母:
    |-- -- 清空后边大写字母的统计
    |-- -- 统计前边的大写字母
    """
    if str1.isupper():
      if countB:
            countC += 1
      else:
            countC = 0
            countA += 1

    """
    |如果str1是小写字母:
    |-- 如果小写字母前边不是三个大写字母(不符合条件):
    |-- -- 清空所有记录,重新统计
    |-- 如果小写字母前边是三个大写字母(符合条件):
    |-- -- 如果已经存在小写字母:
    |-- -- -- 清空所有记录,重新统计(出现两个小写字母)
    |-- -- 如果该小写字母是唯一的:
    |-- -- -- countB记录出现小写字母,准备开始统计countC
    """
    if str1.islower():
      if countA != 3:
            countA = 0
            countB = 0
            countC = 0
      else:
            if countB:
                countA = 0
                countB = 0
                countC = 0
            else:
                countB = 1
                countC = 0
                target = i

    """
    |如果前边和后边都是三个大写字母:
    |-- 如果后边第四个字母也是大写字母(不符合条件):
    |-- -- 清空记录B和C,重新统计
    |-- 如果后边仅有三个大写字母(符合所有条件):
    |-- -- 打印结果,并清空所有记录,进入下一轮统计
    """
    if countA == 3 and countC == 3:
      if i+1 != length and str1.isupper():
            countB = 0
            countC = 0
      else:
            print(str1, end='')
            countA = 3
            countB = 0
            countC = 0

Twilight6 发表于 2021-6-8 21:00:43



切片索引内容包含左索引不包含右索引,所以 Str 这里的 -1 不需要 ,Str 这里 i + 3 应该改成 +4

另外 for 循环中可以不用分两种情况,因为你在 for 循环中设置了开始值、减去了最终长度,但是最终长度应该减去错误,应该为 4 因为 len 函数总比索引值 大 1

for 循环中的 if 判断是否为 \n 也不需要,况且这样判断也无法避免 \n 被算入前三或后三的字符中去,应该在 字符串遍历前将 \n 除去

参考代码:

str1 = ''' 拷贝过来的字符串 '''

def Find(Str):
    Str = Str.replace('\n','')
    str1 = ""
    length = len(Str)

    for i in range(3, length-4):
      if Str.islower():
            if Str.isupper():
                if Str.islower():
                  if Str.isupper():
                        if Str.islower():
                            str1 += Str
    return str1

print(Find(str1))

pythonskill 发表于 2021-6-8 23:50:38

懂了,谢谢各位~
页: [1]
查看完整版本: python第二讲作业求组