代码示例:(标识:python_regex_sub_2)
python_regex_sub_2.py
import re

str = "China is a great country"
x = re.sub("\s", "9", str, 2)
print(x)
运行结果: