Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for House Password by HappyBerry
def checkio(data):
l=0
if(len(data)>=10):
l=l+1
x=data.lower()
if(x!=data):
l=l+1
x=data.upper()
if(x!=data):
l=l+1
lc=0
lb=['0','1','2','3','4','5','6','7','8','9']
for i in lb:
if(data.find(i)!=-1):
lc=lc+1
if(lc>0):
l=l+1
if(l==4):
return True
else:
return False
Oct. 20, 2017