Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password III by jnruby
# Taken from mission Acceptable Password II
# Taken from mission Acceptable Password I
def is_acceptable_password(password: str) -> bool:
# your code here
if len(password) < 6:
return False
if not any(char.isalpha() for char in password):
return False
if not any(char.isdigit() for char in password):
return False
else: return True
Dec. 14, 2020
Comments: