Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by ighost
from string import ascii_lowercase, ascii_uppercase
def checkio(data):
digits = set('0123456789')
if len(data) < 10:
return False
if any((c in digits) for c in data):
ascii_lower = set(ascii_lowercase)
ascii_upper = set(ascii_uppercase)
if any((c in ascii_lower) for c in data):
if any((c in ascii_upper) for c in data):
return True
return False
Sept. 27, 2014
Comments: