Examveda

What will be the output of the following Python code?
sentence = 'horses are fast'
regex = re.compile('(?P<animal>\w+) (?P<verb>\w+) (?P<adjective>\w+)')
matched = re.search(regex, sentence)
print(matched.groupdict())

A. {'animal': 'horses', 'verb': 'are', 'adjective': 'fast'}

B. ('horses', 'are', 'fast')

C. 'horses are fast'

D. 'are'

Answer: Option A


This Question Belongs to Python Program >> Regular Expressions In Python

Join The Discussion

Related Questions on Regular Expressions in Python