7.18.1 detection(password) -《automate the boring stuff with python》

假设两点:

  1. 这是一个创建口令的场景,目标是成功创建强口令;
  2. 创建者知道强口令的定义,即长度不小于8个字符,同时包含大写和小写字符,至少有一位数字。

那么:

  1. 无需限制尝试的次数;
  2. 无需使用print()提示强口令的定义。
import re

def detection(password):
    upperCheckRegex = re.compile(r'[A-Z]+')
    lowerCheckRegex = re.compile(r'[a-z]+')
    digitCheckRegex = re.compile(r'[0-9]+')

    if len(password) < 8:
        return False

    if upperCheckRegex.search(password) is None:
        return False

    if lowerCheckRegex.search(password) is None:
        return False

    if digitCheckRegex.search(password) is None:
        return False


while True:
    password = str(input('Creat a password:'))

    if detection(password) == False:
        print('Your password is not strong enough. Please try again.')
        continue
    else:
        print('Your password has been created successfully.')
        break
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值