출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기

Regex 관련 문제인 것처럼 보이지만, try, except문제라고 써놓는 것이 더 적합했다.

import re

T= int(input())

for i in range(T):
    try:
        p = re.compile(str(input()))
        print(True)
    except:
        print(False)

단순하게 입력한는 regex가 맞는지 아닌지 확인해주고 맞다면 바로 True, 오류가 뜬다면 바로 False를 출력하게끔 했다.