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 Players Dictionary and Class

what's wrong with my answer?

Couldn't find where's going wrong?

players.py
import re

string = '''Love, Kenneth: 20
Chalkley, Andrew: 25
McFarland, Dave: 10
Kesten, Joy: 22
Stewart Pinchback, Pinckney Benton: 18'''

players = re.search(r'(?P<last>[\w]+),\s(?P<first>[\w]+):\s(?P<score>[\d]+)', string, re.M)

1 Answer

Susanne Fortunato
Susanne Fortunato
7,986 Points

This is a great start - I'd suggest using the triple quotes & re.X as a way to break apart your groups and help you debug, like this:

players = re.search(r'''
  (?P<last>[\w]+),\s
  (?P<first>[\w]+):\s
  (?P<score>[\d]+)
''', string, re.M|re.X)

Two main things to look at:

first (^) and last ($) indicators to help regex parse the multi-line string

players = re.search(r'''
  ^(?P<last>[\w]+),\s
  (?P<first>[\w]+):\s
  (?P<score>[\d]+)
''', string, re.M|re.X)$

And a way to account for the double first name, double last name of the last player

players = re.search(r'''
  (?P<last>[\w\s]+),\s
  (?P<first>[\w\s]+):\s
  (?P<score>[\d]+)
''', string, re.M|re.X)