1.

What is the output of the following? sentence = 'we are humans' matched = re.match(r'(.*) (.*?) (.*)', sentence) print(matched.group(2))

A. are’
B. ‘we’
C. humans’
D. ‘we are humans’
Answer» D. ‘we are humans’


Discussion

No Comment Found