Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password II by mozurin
is_acceptable_password = lambda pw: len(pw) > 6 and any(c.isdigit() for c in pw)
March 20, 2020