Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Clearly readable solution in Clear category for House Password by RiordanIX
def checkio(password):
"""Tests Password Strength."""
low,cap,num = False, False, False
if len(password) >= 10:
for x in password:
if x.isdigit():
num = True
if x.islower():
low = True
if x.isupper():
cap = True
return num and low and cap
return False
July 21, 2014