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 Escapes

Ryan McGuire
Ryan McGuire
3,758 Points

What am I missing, search with a regular expression, the first number in the string and return the match object.

This works in my workspace, but I must be doing something wrong for their listed goal. Can anyone explain where I went wrong and what the code should read? Thanks for your help.

escapes.py
import re

def first_number(string):
    return(re.match(r'\d',string))

1 Answer

Steven Parker
Steven Parker
229,644 Points

The instructions say "The function should search, with a regular expression, the first number in the string and return the match object."

The word "search" in the instructions is a clue to what "re" method you should use (instead of "match").