Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Clear solution in Clear category for House Password by genadiik
def checkio(data: str) -> bool:
any_digit = any([c.isdigit() for c in data])
any_upper = any([c.isupper() for c in data])
any_lower = any([c.islower() for c in data])
return len(data) >= 10 and any_digit and any_upper and any_lower
May 31, 2019
Comments: