import re

patterns = [
	re.escape("hello(["),
	r"hello([",
	"hello(["
]
for pattern in patterns:
	print("Pattern is {}".format(pattern))
	try:
		print(re.match(pattern=pattern, string="hello(["))
	except:
		print("Exception!")
