35.
What is the purpose of the re.VERBOSE flag in Python?

37.
What will be the output of the following Python code?
sentence = 'horses are fast'
regex = re.compile('(?P<animal>\w+) (?P<verb>\w+) (?P<adjective>\w+)')
matched = re.search(regex, sentence)
print(matched.groupdict())

38.
What will be the output of the following Python code?
re.match('sp(.*)am', 'spam')

39.
How can you specify a range of characters in a character class in regular expressions?