import re
re_flags = { 're.A' : re.A, 
	're.ASCII' : re.ASCII,
	're.DEBUG' : re.DEBUG,
	're.I' : re.I,
	're.IGNORECASE' : re.IGNORECASE,
	're.L' : re.L,
	're.LOCALE' : re.LOCALE,
	're.M' : re.M,
	're.MULTILINE' : re.MULTILINE,
	're.S' : re.S,
	're.DOTALL' : re.DOTALL,
	're.X' : re.X,
	're.VERBOSE' : re.VERBOSE }
flg = 're.I'
if flg in re_flags:
	print(re_flags[flg])
