Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Single line solution in Clear category for Acceptable Password II by katnic
is_acceptable_password = lambda psw: len(psw)>6 and any([p.isdigit() for p in psw])
Aug. 18, 2021
Comments: