Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Third solution in Speedy category for Acceptable Password I by _Chico_
def is_acceptable_password(password: str) -> bool:
length = 0
for letter in password:
length += 1
if length > 6: return True
return False
July 28, 2021