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