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 trialalex albas
Front End Web Development Techdegree Student 2,190 PointsWhy it doesn't work? in my terminal console it works..
I can't pass the current challenge, but i tried to compile into console and it works...what happens?
import re
# EXAMPLE:
# >>> find_words(4, "dog, cat, baby, balloon, me")
# ['baby', 'balloon']
def find_words(count, my_string):
my_list = my_string.split(', ')
for word in my_list:
if len(word) < count :
my_list.remove(word)
return my_list
2 Answers
kwhitlock
8,918 PointsFunctionally it is correct. However its not using the way taught in the lesson. I.e using the methods from the module re. Have a look at the video before the challenge, Kenneth explains it there.
Kenneth Love
Treehouse Guest TeacherHmm, that's matching the word 'match' when the length is 6.