Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for House Password by PiotrKrol
def checkio(data):
a = False
b = False
c = False
d = False
if(len(data) >= 10):
a = True
for i in range(len(data)):
if data[i].isupper():
b = True
if data[i].islower():
c = True
if data[i].isdigit():
d = True
if a == True and b == True and c == True and d == True:
return True
else:
return False
Oct. 19, 2017