Q. What does `re.findall()` return?
β
Correct Answer: (A)
A list of matches
Explanation: `re.findall()` returns all non-overlapping matches of pattern in string as a list.