博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
01密码强度检查_python篇
阅读量:5377 次
发布时间:2019-06-15

本文共 1635 字,大约阅读时间需要 5 分钟。

需求

 

 

 

解决方法(本人写的)

写一个与需求相关的正则表达式,断言是否匹配,不匹配返回false,匹配返回ture

 

代码参考如下

 

import re

def checkio(data):
    password_one = len(data) >= 10  # 长度大于等于10
    password_two = re.findall("[0-9]",data) # 必有一个数字
    password_three = re.findall("[a-z]",data)   # 必有一个小写字母
    password_four = re.findall("[A-Z]",data)    # 必有一个大写字母
    if password_one and password_two and password_three and password_four:
        return True
    else:
        return False

# 断言

if __name__ == '__main__':
    assert checkio('A1213pokl') == False, "1st example"
    assert checkio('bAse730onE4') == True, "2nd example"
    assert checkio('asasasasasasasaas') == False, "3rd example"
    assert checkio('QWERTYqwerty') == False, "4th example"
    assert checkio('123456123456') == False, "5th example"
    assert checkio('QwErTy911poqqqq') == True, "6th example"
    assert  checkio("erer798rew9rew9r7ew987rw") == False

# 成功的话,就输出这句话

    print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")

 

 

 

其他解决方法:

参考他人的,这个正则表达式没看懂,有理解的同学麻烦留言一下

import re

 

 

def checkio(data):

    # (?=) is positive lookahead. Use this construction to make sure the enclosed pattern exists

    return bool(re.search(r'^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{10,}$', data))

 

if __name__ == '__main__':

    # These "asserts" using only for self-checking and not necessary for

    # auto-testing

    assert checkio('A1213pokl') == False, "1st example"

    assert checkio('bAse730onE4') == True, "2nd example"

    assert checkio('asasasasasasasaas') == False, "3rd example"

    assert checkio('QWERTYqwerty') == False, "4th example"

    assert checkio('123456123456') == False, "5th example"

    assert checkio('QwErTy911poqqqq') == True, "6th example"

 

转载于:https://www.cnblogs.com/xuxiongbing/p/9542076.html

你可能感兴趣的文章
数组去重的几种方法
查看>>
包装类的自动装箱与拆箱
查看>>
ShareSDk的使用
查看>>
android使用web加载网页的js问题
查看>>
poj 1068 Parencodings
查看>>
docker 数据卷管理
查看>>
如何让一个div的大小,从某一个特定值开始,随内容的增加而自动变化?
查看>>
P1977 出租车拼车(DP)
查看>>
iOS开发--完整项目
查看>>
我的博客园皮肤模板
查看>>
正则表达式
查看>>
java基础:不同进制的表现形式
查看>>
Base64转换为blob对象
查看>>
gulp自动化压缩合并、加版本号解决方案
查看>>
windows下面安装Python和pip教程
查看>>
Java 动态向 JTable 中添加数据
查看>>
平安科技移动开发二队技术周报(第九期)
查看>>
Oracle【二维表管理:约束】
查看>>
2017-2018-1 20155307 《信息安全系统设计基础》第5周学习总结
查看>>
微软职位内部推荐-Principal Dev Manager for Windows Phone Apps
查看>>