Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Third solution in Clear category for House Password by stuqs
def checkio(data):
UpFlag = False
LowFlag = False
DecFlag = False
if len(data) <= 9 or not data.isalnum():
return False
for elem in data:
if elem.isupper():
UpFlag = True
elif elem.islower():
LowFlag = True
elif elem.isdecimal():
DecFlag = True
return UpFlag and LowFlag and DecFlag
#Some hints
#Just check all conditions
May 27, 2014