Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Acceptable Password II by tokiojapan55
def is_acceptable_password(password: str) -> bool:
return len(password)>6 and len([c for c in password if c.isdigit()])>0
June 23, 2020