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 trialchen liu
3,188 PointsI couldn't understand the answer executable.
what do the double "+" mean in the answer executable.
import re
# EXAMPLE:
# >>> find_words(4, "dog, cat, baby, balloon, me")
# ['baby', 'balloon']
return re.findall(r'\w{str(count) ,}', string) #<-- cast count as string
#This is the right answer, but I cound't understand waht the"+" in "+str(count)+" means?
return re.findall(r'\w{'+ str(count) + ',}', string) #<-- cast count as string
1 Answer
Jeff Muday
Treehouse Moderator 28,720 PointsBasically, the plus signs allow you to EMBED the count as a string value inside the regular expression.
the \w allows the "capture" of letters or digits and the braces {} show how many letters to capture
count = 4 makes the regular expression below (which allows finding words with 4 characters or more)
r'\w{4}'
count = 5 yields the expression below (which allows finding words with 5 characters or more)
r'\w{5}