

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the line of code shown below? re.split('\W+', 'Hello, hello, hello.') |
A. | [‘Hello’, ‘hello’, ‘hello.’] |
B. | [‘Hello, ‘hello’, ‘hello’] |
C. | [‘Hello’, ‘hello’, ‘hello’, ‘.’] |
D. | [‘Hello’, ‘hello’, ‘hello’, ”] |
Answer» E. | |