Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One Regular Expression Solution solution in Creative category for House Password by bartosz_lyzwa
import re
def checkio(data):
return re.match('^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])([a-zA-Z0-9]{10,})$',data)
Oct. 17, 2017
Comments: