Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password IV by StanislauL
def is_acceptable_password(password: str) -> bool:
return (len(password)>6 and not password.isdigit() and not password.isalpha()) or len(password)>9
Aug. 24, 2020
Comments: