Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by IlyaM66
def checkio(data):
return len(data) >= 10 and any(s.isupper() for s in data) and any(s.islower() for s in data) and any(s.isnumeric() for s in data) and any(s.isalpha() for s in data)
Feb. 24, 2015