Errors and Exceptions (HackerRank)
import re for _ in range(int(input())): try: re.compile(input()) print("True") except re.error: print("False")
import re for _ in range(int(input())): try: re.compile(input()) print("True") except re.error: print("False")