Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Going for readability solution in Clear category for House Password by evrur97
import re
def checkio(data: str) -> bool:
too_short = len(data) < 10
no_digit = not re.search("[0-9]", data)
no_uppercase = not re.search("[A-Z]", data)
no_lowercase = not re.search("[a-z]", data)
return not(too_short or no_digit or no_uppercase or no_lowercase)
July 30, 2019
Comments: