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 trialSathya Musanipalli
2,265 PointsReturn a list of the words in the string that are greater than or equal to the count
How do I define word?
import re
def find_words(count, str):
if word in find_words >= count:
return word
# EXAMPLE:
# >>> find_words(4, "dog, cat, baby, balloon, me")
# ['baby', 'balloon']
1 Answer
Travis Alstrand
Treehouse Project ReviewerHey there Sathya Musanipalli ! 👋
I would go back and review this video on Counts. I think the challenge is expecting the usage of Regular Expressions as it's being imported at the top and you should find your solution within that video.
Looking at the example commented out at the bottom, this looks like what the challenge is going to test your function with. I think the re.findall()
method would be a good way to approach this 👍