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 trialIan Maina
4,571 Pointswhat am I doing wrong here?
so what is wrong with this code?
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
Chris Freeman
Treehouse Moderator 68,441 PointsIn your regex pattern "count" is a literal string of characters and does not get the value of the variable count
. You will need to use .format()
or string concatination to include the value of count
in the regex string.
Post back if you need more help. Good luck!!
James Peter
3,180 PointsBreaking (r'\w{count, }', string) into three parts and formatting the count would make the code work.
(r'\w{' + '{}'.format(count) +........ the remaining needs to concatenated to make it work.