What is the output of the following code:
import re
result = re.sub(r'd+', 'number', 'There are 5 apples and 3 oranges.')
print(result)
result = re.sub(r'd+', 'number', 'There are 5 apples and 3 oranges.')
print(result)
A. There are number apples and number oranges.
B. An error will occur
C. There are 5 apples and 3 oranges.
D. There are number apples and 3 oranges.
Answer: Option A

Join The Discussion