XXX的作业一

代码


# replace with your code here
import re
txt = "The rain in Spain"
x = re.sub("\s", "9", txt)
print(x)

结果

结果截图

解释

如果所写代码复杂,且没有良好的注释,那么请在这里补充解释。