Tell us what’s happening:
hello dear tutors, im stuck again
lecture told me to create a character class for w that is working with either h or a. so i guessed that the ‘l+’ assigned to. the pattern had to go and the char class has to be set instead. ( w[ha]). where have had i lost track here? thanks in advance
lecture: A character class is indicated by square brackets and matches one character among those specified between the brackets. For example, ma[dnt]
matches either mad
, man
, or mat
.
Modify your pattern to match a w
followed by either h
or a
.
Your code so far
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, '')
]
return password
# new_password = generate_password(8)
# print(new_password)
# User Editable Region
pattern = w[ha]
quote = 'Not all those who wander are lost.'
print(re.findall(pattern, quote))
# User Editable Region
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36
Challenge Information:
Learn Regular Expressions by Building a Password Generator - Step 34