python_regex_sub_1.py:
x
 
import re
str = "China is a great country"
x = re.sub("\s", "9", str)
print(x)