Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by rolandp
import string
def checkio(data):
return len( data ) >= 10 and \
any( c in string.digits for c in data ) and \
any( c in string.ascii_lowercase for c in data ) and \
any( c in string.ascii_uppercase for c in data )
Sept. 26, 2015