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 Negated Numbers

Andy McDonald
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Andy McDonald
Python Development Techdegree Graduate 13,801 Points

Negating numbers from string

Took a nice little break from coding and cant remember how to negate from a string. tried doing [\d^567] and [\d][^567] and just cant figure out how to get the right string from this.

negate.py
import re

string = '1234567890'

good_numbers = re.findall(r"[\d^567]+", string)

1 Answer

Jeff Muday
MOD
Jeff Muday
Treehouse Moderator 28,718 Points

There are many solutions, a real simple one is this--

It takes any digits 0 through 4 and 8 through 9.

good_numbers = re.findall(r'[0-4]*[8-9]*', string)