22.
What will be the output of the following Python code?
re.split('\W+', 'Hello, hello, hello.')

27.
What is the purpose of the re.findall() function in Python?

29.
What will be the output of the following Python code?
re.split(r'\s+', 'Chrome is better than explorer', maxspilt=3)