Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by Kektus13
import re
def checkio(data):
if len(data) > 9:
if any(char.isupper() for char in data) and \
any(char.islower() for char in data) and \
any(char.isdigit() for char in data):
return True
else:
return False
Sept. 20, 2015
Comments: