Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for House Password by locky.spb
import re
def checkio(data: str) -> bool:
#data ='asasasasasasasaas' #'bAse730onE4'
if len(data) < 10:
return False
# Just check if at least one symbol present for every group nedeed
if all([re.search('[0-9]', data), \
re.search('[a-z]', data), \
re.search('[A-Z]', data)]):
return True
else:
return False
Sept. 8, 2019
Comments: