Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by virzen
import re
def checkio(data):
lowercase = re.compile('[a-z]+').search(data)
uppercase = re.compile('[A-Z]+').search(data)
digit = re.compile('[0-9]+').search(data)
length = len(data) >= 10
return bool(lowercase and uppercase and digit and length)
Jan. 9, 2017