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 trialStheven Cabral
Full Stack JavaScript Techdegree Graduate 29,854 PointsHelp with challenge question
Why isn't my code working?
import re
string = '1234567890'
good_numbers = re.findall(r'[1-5]{5}[8-9]{2}0{1}', string)
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsThe challenge is looking for anything that isn't a 7, 8, or 9. You can find any set of characters using square brackets. Putting a caret (^) as the first member of the character set negates the match:
re.findall(r'[1-3]', string) # find any 1, 2, or 3
re.findall(r'[^1-3]', string) # find anything that *isn't* a 1, 2, or 3
Post back if you need more help. Good luck.