Hello! I have faced the same issues
here is my code: for constraint, pattern in constraints:
len(re.findall(pattern, password))
constraint <= len(re.findall(pattern, password))
i have tried so many other ways but none of them worked
for instance:
for constraint, pattern in constraints:
len(re.findall(pattern, password))
if constraint <= len(re.findall(pattern, password)):
pass
2) for constraint, pattern in constraints:
len(re.findall(pattern, password))
constraint <= len(re.findall())
none of these worked. Could you help me please ?
In the future, please create your own topic when you have specific questions about your own challenge code. Only respond to another thread when you want to provide help to the original poster of the other thread or have follow up questions concerning other replies given to the original poster.
The easiest way to create a topic for help with your own solution is to click the Ask for Help button located on each challenge. This will automatically import your code in a readable format and pull in the challenge url while still allowing you to ask any question about the challenge or your code.