Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

MONTRIAL HARRELL
Python Web Development Techdegree Student 2,150 PointsNames.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.
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

ursaminor
11,271 PointsWhen 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!