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())
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
Join The Discussion