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

MONTRIAL HARRELL
seal-mask
.a{fill-rule:evenodd;}techdegree
MONTRIAL HARRELL
Python Web Development Techdegree Student 2,150 Points

Names.py is failing but I am getting back the first name and last name as requested.

Please point out where my code is incorrect. The challenge is saying that it is not getting back the correct group info but I can not understand what is wrong.

names.py
import re

string = 'Perotto, Pier Giorgio'


names = re.match(r'(?P<lname>[\w]+),(?P<fname>\s[\w]+\s[\w]+)',string,re.I)
names.group('lname', 'fname')

1 Answer

When I print the output of names.group('lname', 'fname') I get: ('Perotto', ' Pier Giorgio') There's a space in front of "Pier". I think that's why you're getting the error. Try to remove the space and I think you'll pass the challenge. Good luck!