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 trialPaul Otieno
6,035 Pointsfind_words causing problems
My code won't work why?
import re
# EXAMPLE:
# >>> find_words(4, "dog, cat, baby, balloon, me")
# ['baby', 'balloon']
def find_words(count, string):
return re.findall(r'\w*{count}', string)
2 Answers
Idan Melamed
16,285 PointsHi Paul, you are really (really) close!
When you write re.findall(r'\w*{count}', string), it actually tries to check if there is 1 or 0 alphabet characters (that's the \w* part) and if it finds one, it continues to look for '{count}'. Because it doesn't find any word in the list which is made of 0 or 1 characters followed by {count}, it returns an empty list.
Here's my solution:
def find_words(count, string):
return re.findall(r'\w' * count + '+', string)
Multiply '\w' by count, to find words that are equal in length to count, then add a '+' to also find words with more than count letters.
I just thought of another solution:
def find_words(count, my_str):
return re.findall(r'\w{%d,}' % count, my_str)
'\w{num,}' is like saying look for at least num straight \w
Hope this helps, Idan.
Paul Otieno
6,035 PointsThank you Idan