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.

Elisha Bere
6,648 PointsWhat did i do wrong?
where m i getting it wrong the last name is showing as last name and lastname showing as first name. my code is attached.
firstname must be PERROTO and last name must be Pier Giorgio
import re
string = 'Perotto, Pier Giorgio'
names = re.match(r'''
([-\w]+,)
(\s[-\w\s\w]+)
''', string, re.X)
1 Answer

Steven Parker
221,310 PointsIf you look carefully at the error response it contains clues: Bummer! Didn't get the right content in the groups. Last name was "Perotto,", first name was " Pier Giorgio".
The last name contains a comma at the end, and the first name has a space at the beginning. These characters separate the names, but the regex should not include them as part of the names.