demo_regex_sub2.py:
import re #Replace the first two occurrences of a white-space character with the digit 9: txt = "The rain in Spain" x = re.sub("\s", "9", txt, 2) print(x)
C:\Users\My Name>python demo_regex_sub2.py
The9rain9in Spain