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 Groups

V K
V K
5,237 Points

I can't find the source of my Traceback Error

Here is the code:

line = re.search(r'''
    ^(?P<name>[-\w ]*,\s[-\w ]+)\t  # last and first names
    (?P<email>[-\w\d.+]+@[-\w\d.]+)\t  #  email address
    (?P<phone>)\(?\d{3}\)?-?\s?\d{3}-\d{4})?\t  #phone numbers
    (?P<job>[\w\s]+,\s[\w\s.]+)\t?  #job and company
    (?P<twitter>@[\w\d]+)?$  #twitter handle
''', data, re.X|re.M)
print(line)
print(line.groupdict())

Here is the message I get

Traceback (most recent call last):
File "address_book.py", line 30, in <module>
''', data, re.X|re.M)
File "/usr/local/pyenv/versions/3.5.0/lib/python3.5/re.py", line 173, in search
return _compile(pattern, flags).search(string)
File "/usr/local/pyenv/versions/3.5.0/lib/python3.5/re.py", line 293, in _compile
p = sre_compile.compile(pattern, flags)
File "/usr/local/pyenv/versions/3.5.0/lib/python3.5/sre_compile.py", line 536, in compile
p = sre_parse.parse(p, flags)
File "/usr/local/pyenv/versions/3.5.0/lib/python3.5/sre_parse.py", line 834, in parse
raise source.error("unbalanced parenthesis")
sre_constants.error: unbalanced parenthesis at position 158 (line 4, column 43)

@kennethlove

1 Answer