源代码
import re str = "China is a great country" x = re.sub("\s", "9", str) print(x)
运行结果