Back to Freecodecamp

Step 49

curriculum/challenges/english/blocks/learn-regular-expressions-by-building-a-password-generator/6564eebf0d2d6390b9377197.md

latest1.2 KB
Original Source

--description--

Now, turn pattern into the shorthand class for non-alphanumeric characters.

--hints--

Your pattern variable should be '\W'.

js
({ test: () => assert.match(code, /^pattern\s*=\s*r("|')\\W\1/m) })

--seed--

--seed-contents--

py
import re
import secrets
import string


def generate_password(length, nums, special_chars, uppercase, lowercase):
    # Define the possible characters for the password
    letters = string.ascii_letters
    digits = string.digits
    symbols = string.punctuation

    # Combine all characters
    all_characters = letters + digits + symbols

    while True:
        password = ''
        # Generate password
        for _ in range(length):
            password += secrets.choice(all_characters)
        
        constraints = [
            (nums, r'\d'),
            (lowercase, r'[a-z]'),
            (uppercase, r'[A-Z]'),
            (special_chars, r'\W')
        ]        

    return password
    
# new_password = generate_password(8)
# print(new_password)
--fcc-editable-region--
pattern = r'\.'
quote = 'Not all those who wander are lost.'
print(re.findall(pattern, quote))
--fcc-editable-region--