Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
House Password solution in Clear category for House Password by W.Zalicki
def checkio(data):
lower = False
digit = False
upper = False
length = False
if len(data)>=10:
length = True
for i in data:
if i.islower():
lower = True
if i.isdigit():
digit = True
if i.isupper():
upper = True
if ( lower and digit and upper and length ):
return True
else:
return False
Nov. 5, 2017