鱼C论坛

 找回密码
 立即注册
查看: 1531|回复: 2

求教零基础中第14课编程题为什么这样做结果是错的

[复制链接]
发表于 2020-3-5 16:06:11 | 显示全部楼层 |阅读模式

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

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

x
X=['~','!','@','#','$','%','^','&','*','(',')','_','=','-','/',',','.','?','<','>',';',':','[',']','{','}','|','\\']
Y=['1','2','3','4','5','6','7','8','9','0']
Z=['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','u','s','t','u','v','w','x','y','z']
passwords=input('请输入注册密码:')
for x in X:
    for y in Y:
        for z in Z:
            if len(passwords)>=16 and x in passwords==True and y in passwords==True and z in passwords==True and (
            passwords[0]==z):
                print('密码安全等级:高')
                break
            else:
                if 16>=len(passwords)>=8 and (x in passwords==True and y in passwords==True) or (x in passwords==True and z
                in passwords==True) or (y in passwords==True and z in passwords==True):
                    print('密码安全等级:中')
                    break
                else:
                    if len(passwords)<8 and passwords.isdigit()==True:
                        print('密码安全等级:低')
                        break


这个代码当想输入的是等级高和等级中的密码时,都没有返回,求大神解答,谢谢了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-6 23:04:54 | 显示全部楼层
首先你这程序就不有问题,其中一个break只能跳出一个for循环,无法跳出外层循环。
程序修改如下:其中判断都是按照你的判断写的
X=['~','!','@','#',','%','^','&','*','(',')','_','=','-','/',',','.','?','<','>',';',':','[',']','{','}','|','\\']
Y=['1','2','3','4','5','6','7','8','9','0']
Z=['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','u','s','t','u','v','w','x','y','z']

while True:
    passwords=input('请输入注册密码:')
    flagx = False
    flagy = False
    flagz = False 
    print(flagx,flagy,flagz)
    for each in passwords:
        if each in X:
           flagx = True
        elif each in Y:
            flagy = True
        elif each in Z:
            flagz = True
    print(flagx,flagy,flagz)

    if len(passwords)>= 16 and flagx and flagy and flagz and passwords[0] in Z:
        print('密码安全等级:高')
        
    elif 8<=len(passwords)<= 16 and (flagx + flagy +flagz ==2) :#判断符合2种规则
        print('密码安全等级:中')
    elif len(passwords)<8 and passwords.isdigit()==True:
        print('密码安全等级:低')
    else:
        print('其他类型的密码')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-3-7 19:31:07 | 显示全部楼层
小小小菜菜菜 发表于 2020-3-6 23:04
首先你这程序就不有问题,其中一个break只能跳出一个for循环,无法跳出外层循环。
程序修改如下:其中判断 ...

受教了!谢谢大佬
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-12-22 15:58

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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