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 trialSam Will
Python Development Techdegree Student 162 Pointsre.error: missing ), unterminated subpattern at position 0.Why am i getting this error ?
I dont know why i am getting this error
1 Answer
Jebadeiah Jones
10,429 PointsSeeing your code will help alot in answering this question, but I anticipate a parenthesis was deleted at some point OR we'd simply forgotten to remove a slash, causing the code to escape the parenthesis. One point where I anticipate this happening most easily is when changing this code:
print(re.search(r'\(\d\d\d\) \d\d\d-\d\d\d\d', data))
to this code:
print(re.search(r'\(\d{3}\)?-?\s?\d{3}\-\d{4}', data))