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

Regular Expression Error: 'NoneType' object has no attribute 'group'

I wrote the following function to match and return the first number in a string. It works when I run it on my console and returns <re.Match object; span=(0, 1), match='9'>, but I get an error when I try to submit it. What's wrong and how can I fix it?

escapes.py
import re

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

1 Answer

Robin Goyal
Robin Goyal
4,582 Points

re.match only checks if the first character in the string is a match. If your string is "I have 30 points", it'll only check if the first character matches the regex and return None if it doesn't. You want to find the first occurrence of a number in the string.