Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple solution in Clear category for Acceptable Password II by Pouf
def is_acceptable_password(password: str) -> bool:
return len(password) > 6 and any(c.isdigit() for c in password)
June 28, 2020
Comments: