

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the code shown below? re.split(r'\s+', 'Chrome is better than explorer', maxspilt=3) |
A. | [‘Chrome’, ‘is’, ‘better’, ‘than’, ‘explorer’] |
B. | [‘Chrome’, ‘is’, ‘better’, ‘than explorer’] |
C. | (‘Chrome’, ‘is’, ‘better’, ‘than explorer’) |
D. | Chrome is better’ ‘than explorer’ |
Answer» C. (‘Chrome’, ‘is’, ‘better’, ‘than explorer’) | |