Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
one function regexp solution in Clear category for House Password by c555
import re
def checkio(data):
return re.search(r'^(?=.{10,})(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9]).*$', data)
Oct. 29, 2014
Comments: