Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
len(password) solution in Clear category for Acceptable Password I by kkkkk
def is_acceptable_password(password: str) -> bool:
"""Return True if password length is greater than 6, else return False."""
return len(password) > 6
March 19, 2020