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