I have this regex that matches zipcodes in northern California. I'd like to get them into a single regex; is this possible?
(re.match(r'9[0-2].+', zip) or re.match(r'93[0-5].+', zip))
I've tried:
re.match(r'9[0-2|3[0-5].+', zip)
but this doesn't work.