Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for House Password by radekj
def checkio(data):
if len(data) < 10 or \
data.islower() or \
data.isupper() or \
data.isalpha() or \
data.isdigit():
return False
return True
Feb. 28, 2015
Comments: