demo_regex_sub.py:
import re #Replace all white-space characters with the digit "9": txt = "The rain in Spain" x = re.sub("\s", "9", txt) print(x)
C:\Users\My Name>python demo_regex_sub.py
The9rain9in9Spain