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