摘要:
一、python 使用SMTP发送邮件通知 1. 运行环境 python 3.6.8 2. 发送邮件类 import smtplib import traceback from email.mime.text import MIMEText class EmailSend(object): ''' 阅读全文
摘要:
一、python 判断密码连续,重复,大小写、数字、符号混合密码复杂度要求 1. 运行环境 python 3.6.8 2. 密码必须包含大小写、数字、特殊符号中的3种且长度为8-16位 def verifyPassword(pwd: str): ''' 验证密码复杂度要求,密码必须由大小写字母、数字 阅读全文