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