1.

What is the output of the code shown below? 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» B. ‘77def: lmn-11: 666xyz: 123abc’


Discussion

No Comment Found