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 trialJake Williams
2,900 Pointsescapes.py challenge task 2
Not sure exactly what I'm missing here but I feel like I'm close. The other example I found didn't help me out too much.
import re
def first_number(string):
number = re.search(r'\d', string)
return number
def numbers(count_as_int, string_1):
numeros = re.search(r'\d' * 5, string_1)
return numeros
1 Answer
Steven Parker
231,198 PointsYes, you are very close indeed. But the instructions say to search for "exactly count
numbers" (using the supplied argument) and not always 5.