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 Name Groups

Output marked wrong, but output looks correct in IDE. Am I missing specific group names?

The assignment in my code appears to work in my IDE (I get the correct output values), but I am getting marked incorrect for some reason. This is labeled as "named groups", but the expected names are not made clear. Do I need the correct names for the groups, or is there some other issue that I am not seeing?

names = re.match('''
    (?P<first>\w+,){1} # Last name
    (?P<last>\s\w+)
''', string, re.X)
names.py
import re

string = 'Perotto, Pier Giorgio'

names = re.match('''
    (?P<first>\w+,){1} # Last name
    (?P<last>\s\w+)
''', string, re.X)

1 Answer

Actually, I found where it was borked :/