Result Size: 625 x 571
demo_regex_sub.py:
x
 
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