Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Yet cleaner. solution in Clear category for House Password by tomaszdzieniak
def checkio(data):
return all((len(data) >= 10,
any([x.isupper() for x in data]),
any([x.islower() for x in data]),
any([x.isdigit() for x in data])))
Jan. 20, 2016