使用正则表达式,确保传入的口令是强口令

需求内容:

  写一个函数,获取剪贴板口令,确保传入的的口令字符串是强口令。强口令的定义是:长度不少于8个字符,同时包含大写和小写字符,至少有一位数字。可使用多个正则表达式来测试该字符串,以保证它的强度。

代码内容如下:

 # coding:utf-8
'''
测试数据: uusssZmi0546 复制到剪贴板
'''

import pyperclip, re

text = str(pyperclip.paste()) def detection(text):     if len(text) <= 8:         return False     number = re.compile(r'\d+')     if number.search(text) == None:         return False     number2 = re.compile(r'[A-Z]+')     if number2.search(text) == None:         return False     number3 = re.compile(r'[a-z]+')     if number3.search(text) == None:         return False     return True 测试: a = detection(text) print a 结果: True

个人微博:http://weibo.com/wjrtaojiang,各种优惠券走起!!!

你可能感兴趣的:(python)