WXF666 发表于 2019-11-6 22:34:45

020py最后一题

def passwd(temp1):
    length = len(temp1)-4
    for each in range(4,length-5):
      if temp1.isalpha() and temp1.islower():
                temp2 = temp1 + temp1
                temp3 = temp1 + temp1
                if temp2.isalpha() and temp2.isupper():
                  if temp3.islower():
                        print(temp1,end='')
花了一个多小时在这道题目上醉了,虽然有漏洞(第3位和倒数第4位无法纳入判断),不过最后总算看到密码是啥了。
一开始用的for each in temp1:,此时each代表的是符号,当我想用index语句索引它的位置,发现只能输出最先出现的位置号,无耐只好换range语句重写一遍 = =
页: [1]
查看完整版本: 020py最后一题