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 trialFrederik Madsen
8,254 Pointsword length
Not sure what i'm doing wrong
import re
def find_words(count, string):
return re.findall(r'\w{count,}', string)
# EXAMPLE:
# >>> find_words(4, "dog, cat, baby, balloon, me")
# ['baby', 'balloon']
1 Answer
Jennifer Nordell
Treehouse TeacherHi there, Frederik Madsen! This is a trickier one. Specifically because you can't use count
directly in the regex in that way. So you will either need to do some concatenation or interpolation to insert the value of count
into the regex. You can do that by using multiple curly braces.
return re.findall(r'\w{{{},}}'.format(count), string)
Alternatively, you could use concatenation but you will have to forcibly turn the count
into a string:
return re.findall(r'\w{' + str(count) +',}', string)
Hope this helps!