15.
How can you extract a group from a matched regular expression in Python?

16.
What is the purpose of the re.DOTALL flag in Python?

17.
What will be the output of the following code:
import re
pattern = re.compile(r'd+')
result = pattern.search('There are 5 apples and 3 oranges.')
print(result.group())

18.
Which of the codes shown below results in a match?

19.
The function of re.search is . . . . . . . .