

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the following code? w = re.compile('[A-Za-z]+') w.findall('It will rain today') |
A. | It will rain today’ |
B. | (‘It will rain today’) |
C. | [‘It will rain today’] |
D. | [‘It’, ‘will’, ‘rain’, ‘today’] |
Answer» E. | |