Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by oliwiam96
def checkio(data):
if len(data)<10:
return False
if not( any(char for char in data if char.islower())):
return False
if not( any(char for char in data if char.isupper())):
return False
if not( any(char for char in data if char.isdigit())):
return False
return True
Oct. 11, 2015
Comments: