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 trialDavid Gahagan
2,212 PointsI feel like I've answered this question and am not sure what you are after.
The question was looking for me (I think) to create a dictionary defining the last_name and first_name keys. I've done that but it says I've created too many groups
import re
string = 'Perotto, Pier Giorgio'
names = re.match(r'''
^(?P<last_name>[\w]*)
([,]\s)
(?P<first_name>[\w ]*)$
''',string,re.X|re.M|re.I)
2 Answers
frankgenova
Python Web Development Techdegree Student 15,616 Pointsspoiler answer I looked back at my old notes and at the challenge. The task is "Create a variable names that is an re.match() against string. The pattern should provide two groups, one for a last name match and one for a first name match. The name parts are separated by a comma and a space."
Here is the approach I used:
import re
string = 'Perotto, Pier Giorgio'
names = re.match(r'''
([-\w ]+),\s
([-\w ]+)
''', string, re.VERBOSE)
print(names)
David Gahagan
2,212 PointsThanks Frank, I think just because of the previous video detailing dictionary usage I thought that's what they were after. You were right.
best regards Dave