Python检验用户输入密码的复杂度

2023-05-14 20:05:44 复杂度 检验 输入密码

密码强度检测规则:

  • 至少包含一个数字
  • 至少包含一个大写字母
  • 长度至少 8 位

主要知识点

  • while 循环
  • 推导式
  • 列表 any 函数
  • 命令行 input

代码部分

密码强度检测

1、首先创建一个 python 文件

导入系统包

import platfORM

密码强度检测规则

至少包含一个数字至少包含一个大写字母长度至少 8 位

每天打印一词,激励一下自己。

print("人生苦短,我用Python")

输入密码

while True:
    passWord = input("请输入待检测密码: ")

列表推导式使用

print("数字检测: ", [i.isdigit() for i in password])
print("大写字母检测: ", [i.isupper() for i in password])
print("密码长度: ", len(password))

是否有数字, 推导式检测。

hasNumber = any([i.isdigit() for i in password])

是否有大写字母, 推导式检测。

hasUpper = any([i.isupper() for i in password])

密码检测

if hasNumber and hasUpper and len(password) >= 8:
    print("密码符合规则, 检查通过")
    break
else:
    print("密码校验未通过, 请重新输入")

2、运行结果

请输入待检测密码: 123213
数字检测:  [True, True, True, True, True, True]
大写字母检测:  [False, False, False, False, False, False]
密码长度:  6
密码校验未通过, 请重新输入
请输入待检测密码: abc1234
数字检测:  [False, False, False, True, True, True, True]
大写字母检测:  [False, False, False, False, False, False, False]
密码长度:  7
密码校验未通过, 请重新输入
请输入待检测密码: Abc34567
数字检测:  [False, False, False, True, True, True, True, True]
大写字母检测:  [True, False, False, False, False, False, False, False]
密码长度:  8
密码符合规则, 检查通过

全部代码

import platform
 
print("人生苦短,我用Python")
 
while True:
    password = input("请输入待检测密码: ")
 
    print("数字检测: ", [i.isdigit() for i in password])
    print("大写字母检测: ", [i.isupper() for i in password])
    print("密码长度: ", len(password))
 
    hasNumber = any([i.isdigit() for i in password])
 
    hasUpper = any([i.isupper() for i in password])
 
    if hasNumber and hasUpper and len(password) >= 8:
        print("密码符合规则, 检查通过")
        break
    else:
        print("密码校验未通过, 请重新输入")

到此这篇关于Python检验用户输入密码的复杂度的文章就介绍到这了,更多相关Python检验密码复杂度内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关文章