Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by flpo
from re import search
def checkio(data):
return len(data) > 9 and all(search(r, data) for r in ('[0-9]', '[A-Z]', '[a-z]'))
July 11, 2017
Comments: