Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by sake12
import re
def checkio(data):
digit = False
upper = False
lower = False
if re.search(r'\d', data):
digit = True
if re.search(r'[A-Z]', data):
upper = True
if re.search(r'[a-z]', data):
lower = True
return len(data) > 9 and digit and upper and lower
April 25, 2015
Comments: