Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
4-liner: Satisfy All Conditions line by line solution in Clear category for House Password by Stensen
from re import compile
def checkio(p, patt=compile(r'\d')):
return len(p) >= 10 and bool(patt.search(p)) and \
any(i.islower() for i in p) and any(i.isupper() for i in p)
Oct. 11, 2020
Comments: