Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Solution solution in Clear category for House Password by qborg
import re
def checkio(data):
return all(
(
len(data) >= 10,
re.search('[a-z]', data),
re.search('[A-Z]', data),
re.search('[0-9]', data)
)
)
July 12, 2015