What will be the output of the following Python code?
import re
s = 'abc123 xyz666 lmn-11 def77'
re.sub(r'\b([a-z]+)(\d+)', r'\2\1:', s)
import re
s = 'abc123 xyz666 lmn-11 def77'
re.sub(r'\b([a-z]+)(\d+)', r'\2\1:', s)A. '123abc: 666xyz: lmn-11 77def:'
B. '77def: lmn-11: 666xyz: 123abc'
C. 'abc123:', 'xyz666:', 'lmn-11:', 'def77:'
D. 'abc123: xyz666: lmn-11: def77'
Answer: Option A

Join The Discussion