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 trial

Python Regular Expressions in Python Introduction to Regular Expressions Email

My code produces the exact same output that team treehouse thinks it should produce, but it marks it wrong.

def find_emails(my_str): return re.findall(r'\w+.?\w*@\w+.\w+.?\w*', my_str)

sets_email.py
import re

# Example:
# >>> find_email("kenneth.love@teamtreehouse.com, @support, ryan@teamtreehouse.com, test+case@example.co.uk")
# ['kenneth@teamtreehouse.com', 'ryan@teamtreehouse.com', 'test@example.co.uk']

def find_emails(my_str):
    return re.findall(r'\w+.?\w*@\w+.\w+.?\w*', my_str)

1 Answer

Steven Parker
Steven Parker
229,785 Points

I agree the error message isn't helpful, and makes it look like the task should pass. I'd guess that perhaps the challenge does some other checking as well but used the wrong error message.

But ignoring the error message for a moment, the regex seems like it might allow things to be counted as email address that contain characters that should be disallowed.

You'll probably have better results if you avoid using the general wildcard (.) and rely more on character classes to screen the input.