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

Mikkel Bielefeldt
Mikkel Bielefeldt
3,227 Points

I don't get it.

I don't really get how I should do this challenge

import re

string = 'Perotto, Pier Giorgio'

names = re.match(r'^(?<name>[-\w ]*, \s[-\w ]+)\t', string)

1 Answer

Steven Parker
Steven Parker
229,732 Points

You're getting close, but

  • the instructions say "The pattern should provide two groups", but this code defines only one
  • the letter "P" is missing from the group naming syntax
  • the groups for this challenge don't need names (and no names were specified in the instructions)
  • the function is missing the "re.X" third argument
  • the expression is requiring two spaces (one via \s) after the comma
  • the expression requires a tab to be present at the end of the string