Python:实现check strong password检查密码强度算法
from string import ascii_lowercase, ascii_uppercase, digits, punctuation
def strong_password_detector(password: str, min_length: int = 8)
from string import ascii_lowercase, ascii_uppercase, digits, punctuation
def strong_password_detector(password: str, min_length: int = 8)