码迷,mamicode.com
首页 > 编程语言 > 详细

《Python编程快速上手》第7.18.1实践练习

时间:2018-02-09 15:42:39      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:使用   mpi   uppercase   ase   字符   实践   快速   com   compile   

# -*- coding:utf-8 -*- # 7.18.1 # 强口令检测 # 写一个函数,使用正则表达式,确保传入的口令字符串是强口令 # 长度不少于8个字符,同时包含大小写,至少有1个数字 import re passd=input("Input your password:") ch_len=re.compile(r‘.{8,}‘) ch_uppercase=re.compile(r‘[A-Z]{1,}‘) ch_case=re.compile(r‘[a-z]{1,}‘) ch_number=re.compile(r‘\d{1,}‘) if ch_len.search(passd): if not ch_case.search(passd) or not ch_uppercase.search(passd) or not ch_number.search(passd) : print("弱密码") else: print("strong enough") else: print("length less then 8")

《Python编程快速上手》第7.18.1实践练习

标签:使用   mpi   uppercase   ase   字符   实践   快速   com   compile   

原文地址:http://blog.51cto.com/2884868/2070488

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!