1.

What is the output of the code shown below? a=re.compile('[0-9]+') a.findall('7 apples and 3 mangoes')

A. [‘apples’ ‘and’ ‘mangoes’]
B. (7, 4)
C. [‘7’, ‘4’]
D. Error
Answer» D. Error


Discussion

No Comment Found