Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple answer for beginners solution in Clear category for Acceptable Password III by akifumikendo0805
def is_acceptable_password(password: str) -> bool:
if (not len(password)>6
or not any(i.isdigit() for i in password)
or all(i.isdigit() for i in password)):
return False
return True
April 30, 2021