Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by Malfoj
def checkio(data: str) -> bool:
return len(data) > 9 and any(i.isdigit() for i in data) and any(j.isupper() for j in data) and any(k.islower() for k in data)
June 18, 2019