Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
if else solution in Clear category for Acceptable Password V by katnic
def is_acceptable_password(password):
if len(password) <= 6 or 'password' in password.lower(): return False
else: return True if len(password) > 9 else 0 < sum(p.isdigit() for p in password) < len(password)
Aug. 20, 2021