Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple IF solution in Clear category for House Password by Muck
def checkio(pwd):
if (len(pwd) > 9
and any(char.isdigit() for char in pwd)
and any(char.isupper() for char in pwd)
and any(char.islower() for char in pwd)):
return True
else:
return False
May 2, 2016