

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the code shown below? a = re.compile('0-9') a.findall('3 trees') |
A. | [] |
B. | [‘3’] |
C. | Error |
D. | [‘trees’] |
Answer» D. [‘trees’] | |