Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
MdP - 1 solution in Uncategorized category for House Password by Messier
def checkio(data):
if (len(data) < 10) or (data.isalpha()) or (data.isdigit()) or (data==data.lower()) or(data == data.upper()): return False
else:return True
#Some hints
#Just check all conditions
May 12, 2014