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 maxalex324
def is_acceptable_password(password):
return (len(password)>6)
def is_acceptable_password(password):
return (len(password)>6)*any([i.isdigit() for i in password])
May 19, 2020
Comments: