didiwendy 发表于 2021-2-2 22:34:46

【零基础入门学python】第20讲课后作业求助!!!

请各位帮帮忙看一下python的第20讲课后作业---动动手第二题:

请用已学过的知识编写程序,找出小甲鱼藏在下边这个长字符串中的密码,密码的埋藏点符合以下规律:
    a) 每位密码为单个小写字母
    b) 每位密码的左右两边均有且只有三个大写字母

我用了遍历滑窗的方法,将原始字符串分成一个个长度为7的切片,并且一个一个字符向后滑动,
通过一个切片内共有6个大写字母、中间字符为小写,且切片前后的字符均为小写来判断是否满足密码条件的逻辑编写一段程序,但是结果不正确,求解答!感谢!

我的程序:
def mima(string):
    password = ''
    flag = 0;
    for i in range(len(string)-7):
      check = string
      counter = 0
      if i == 0:
            for each in check:
                if each.isupper():
                  counter += 1
            if counter == 6 and check.islower() and string.islower():
                password = password + check
      
      elif i == (len(string)-7):
            for each in check:
                if each.isupper():
                  counter += 1
            if counter == 6 and check.islower() and string.islower():
                password = password + check
               
      else:
            for each in check:
                if each.isupper():
                  counter += 1
            if counter == 6 and check.islower() and string.islower() and string.islower():
                password = password + check

    print("密码是:" + password )

shizhaohui 发表于 2021-2-2 23:19:25

其实只判断7位是不行的,你得判断到九位。判断七位没办法剔除一个小写字母前面有4个大写字母或者后面有四个大写字母的情况。

ncx0331 发表于 2021-2-3 14:36:03

因该是这样:
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

didiwendy 发表于 2021-2-4 20:51:06

shizhaohui 发表于 2021-2-2 23:19
其实只判断7位是不行的,你得判断到九位。判断七位没办法剔除一个小写字母前面有4个大写字母或者后面有四个 ...

我判断了,请您细看我的程序, if counter == 6 and check.islower() and string.islower() and string.islower() 在这个判断里string.islower() and string.islower() 就是前后是否还有大写字母的

didiwendy 发表于 2021-2-4 20:51:39

ncx0331 发表于 2021-2-3 14:36
因该是这样:

谢谢,这个我也看到了
页: [1]
查看完整版本: 【零基础入门学python】第20讲课后作业求助!!!