鱼C论坛

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

[已解决]密码题

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

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

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

x
sym = r'''`!@#$%^&*()_+-=/*{}[]\|'";:/?,.<>'''
letter = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
nums = '0123456789'

passwd=input('please,enter your password : ')
safty=0
comp=0

def length():
    global passwd
    global safty
    if 0<len(passwd)<=8:
        safty=1
    elif 8<len(passwd)<=16:
        safty=2
    elif 16<len(passwd)<=20:
        safty=3
    elif 20<len(passwd):
        safty=0

def complexity():
    global passwd
    global comp
    for each in passwd:
        if each in nums:
            comp+=1
            break

    for each in passwd:
        if each in letter:
            comp+=1
            break

    for each in passwd:
        if each in sym:
            comp+=1
            break
            
def judge():
    global passwd
    global comp
    if safty==1 and comp==1:
        print('password is not safe.')

    if safty==3 and comp==3:
        print("password is safest")

    else:
        print('your password is safe.')

length()
while safty==0:
    passwd=input('please,enter passwoed,and length less than 20 :')
    length()

complexity()
judge()
print(safty,comp)

密码题,我在改成函数的时候发现
please,enter your password : 899763sssdgh!!!@#$$
password is safest
3 3
please,enter your password :     (此处为只有空格,在执行while ==0语句)
please,enter passwoed,and length less than 20 :899763sssdgh!!!@#$$
password is safest
3 3

safe和 safest都能打出,但not safe出问题了,为什么它会再打句safe啊?????明明2个都是1啊
please,enter your password : 34645
password is not safe.
your password is safe.
1 1


回车重新输入也是这个问题
please,enter your password :
please,enter passwoed,and length less than 20 :34666
password is not safe.
your password is saft.
1 1
最佳答案
2020-6-7 10:54:00
把第二个 if 改成 elif
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-6-7 10:52:28 | 显示全部楼层
def judge():
    global passwd
    global comp
    if safty==1 and comp==1:
        print('password is not safe.')

    elif safty==3 and comp==3:
        print("password is safest")

    else:
        print('your password is safe.')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-6-7 10:54:00 | 显示全部楼层    本楼为最佳答案   
把第二个 if 改成 elif
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-20 20:06

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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