Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
len if isdigit solution in Clear category for Acceptable Password III by m.kurapov
def is_acceptable_password(password: str) -> bool:
return len(password)>6 and len(password)>len([x for x in password if x.isdigit()])>0
Nov. 18, 2020
Comments: