Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
5-liner: pure regex solution in Clear category for House Password by Stensen
from re import search
def checkio(passwd):
return search(r"[a-z]+", passwd) is not None and \
search(r"[A-Z]+", passwd) is not None and \
search(r"\d+", passwd) is not None and len(passwd) > 9
Oct. 11, 2020