Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
and 'password' not in password.lower() solution in Clear category for Acceptable Password V by Phil15
def is_acceptable_password(password: str) -> bool:
return (
len(password) > 6
and (len(password) >= 10 or (
not password.isdigit()
and any(map(str.isdigit, password))
))
and 'password' not in password.lower()
)
March 18, 2020
Comments: