Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by MaxAlive
def checkio(data):
if len(data) >= 10:
if not ((data.lower() == data) or (data.upper() == data)):
for element in data:
if element.isnumeric():
return True
return False
June 26, 2015