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 CyrylWilczek
def checkio(data):
lower = 0
upper = 0
digit = 0
if len(data) >= 10:
for char in data:
if char.isupper():
upper = 1
if char.islower():
lower = 1
if char.isnumeric():
digit = 1
if lower == 1 and upper == 1 and digit == 1:
return True
return False
Dec. 9, 2017