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 trialRyan McGuire
3,758 PointsI am sure this is simple, but I am at a loss. What do I need to change in my function?
Thanks for the help in advance, sorry if this is simple.
import re
def phone_numbers(numbers):
re.findall(r'\d{3}-\d{3}-\d{4}',numbers)
1 Answer
sergio alvarez
15,205 PointsHi Ryan, you had almost all correct, you were missing the requirement for the return
def phone_numbers(par):
return re.findall(r'\d{3}-\d{3}-\d{4}',par)
Ryan McGuire
3,758 PointsRyan McGuire
3,758 PointsThank you! It is so tough in the beginning to know what mistake I have made when there are so many possibilities. I had tried return but wrapped the next part in () which it "didn't like". Thanks!