31. What will be the output of the following Python code?
re.escape('new**world')
re.escape('new**world')re.escape('new**world')m = re.search('a', 'The blue umbrella')
m.re.patternsentence = 'horses are fast'
regex = re.compile('(?P<animal>\w+) (?P<verb>\w+) (?P<adjective>\w+)')
matched = re.search(regex, sentence)
print(matched.groupdict())re.match('sp(.*)am', 'spam')re.findall("hello world", "hello", 1)