You are viewing a single comment's thread. Return to all comments →
import re T = int(input()) for _ in range(T): try: re.compile(raw_input()) print('True') except re.error: print('False')
Seems like cookies are disabled on this browser, please enable them to open this website
Incorrect Regex
You are viewing a single comment's thread. Return to all comments →
python2
import re T = int(input()) for _ in range(T): try: re.compile(raw_input()) print('True') except re.error: print('False')