Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One line solution solution in Clear category for House Password by metal4people
def checkio(data):
return len(data) >= 10 and any([x.isdigit() for x in data]) and any([x.isupper() for x in data]) and any([x.islower() for x in data])
March 12, 2015