Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Easy and clear soultion solution in Clear category for House Password by piotr.sawicki
def checkio(data):
if len(data) < 10: return False
list = []
for i in data:
if i.isupper():list.append(1)
elif i.isdigit(): list.append(2)
else: list.append(0)
if list.count(0) == 0: return False
if list.count(1) == 0: return False
if list.count(2) == 0: return False
return True
Oct. 21, 2017