if m1 and m2 and m3 and m4: print('强密码') else: print('弱密码')
strong(input('请输入密码'))
7.18.2 strip()的正则表达式版本
写一个函数,它接受一个字符串,做的事情和 strip()字符串方法一样。
如果只传入了要去除的字符串,没有其他参数,那么就从该字符串首尾去除空白字符。
否则,函数第二个参数指定的字符将从该字符串中去除。
1 2 3 4 5 6 7 8 9 10 11 12 13
import re
defstripRe(): text = input("请输入文本:") word = input("请输入去除的字符串,默认空格则直接按'Enter键'") if word == '': stripRegex = re.compile(r'([a-zA-Z0-0])+(.*)*([a-zA-Z0-9])+') print(stripRegex.search(text).group()) else: stripRegex = re.compile(f'{word}') print(stripRegex.sub('',text))