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