Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by light2happy.718
import string
def checkio(data):
"""Check password."""
if len(data) < 10:
return False
if not any(c in data for c in string.ascii_uppercase):
return False
if not any(c in data for c in string.ascii_lowercase):
return False
if not any(c in data for c in string.digits):
return False
return True
May 19, 2015
Comments: