Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
str.isdigit() solution in Clear category for Acceptable Password II by David_Jones
def is_acceptable_password(password):
return len(password) > 6 and any(ch.isdigit() for ch in password)
March 19, 2020