62.
What will be the output of the following Python code?
sentence = 'we are humans'
matched = re.match(r'(.*) (.*?) (.*)', sentence)
print(matched.group())

65.
What is the purpose of the re.search() function in Python?

66.
What will be the output of the following Python code?
re.findall('good', 'good is good')
re.findall('good', 'bad is good')