Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialHoma Shayan
2,038 Pointsword_length.py
Using r for the raw string, I'm not sure what happens to a variable name. should it be a string of an integer or the actual integer? should we put for example assuming the the count is an integer and we want to used it inside the r' ' should we use num as num = str (count) and used it like return re.findall(r'w{num,}', user_str) ?
I also tried return re.findall(r'\w'count'\w', user_str)
none of them passed.
import re
# EXAMPLE:
# >>> find_words(4, "dog, cat, baby, balloon, me")
# ['baby', 'balloon']
def find_words(count, user_str):
num = str(count)
return re.findall(r'\w{num,}', user_str)
1 Answer
Michael Norman
Courses Plus Student 9,399 PointsYou are close in your first attempt. In fact it would be correct if you change on small thing. You must concatenate num with the beginning and end of the regex
def find_words(count, user_str):
num = str(count)
return re.findall(r'\w{' + num + ',}', user_str)
# this is the same as r'\w{num,}'
Homa Shayan
2,038 PointsHoma Shayan
2,038 Pointsi forgot a * in re.findall(r'\w'*count'\w', user_str). not passing!