我试图用“x”替换字符串中的空格作为函数,我不确定最好的方法是什么?
例如
how is your day ?
我希望这是
howxisxyourxdayx?
感谢您的帮助
我试图用“x”替换字符串中的空格作为函数,我不确定最好的方法是什么?
例如
how is your day ?
我希望这是
howxisxyourxdayx?
感谢您的帮助
您可以使用替换()
text.replace(' ', 'x')
尝试使用替换:
string.replace(' ', 'x')
>>> text = 'how is your day ?'
>>> text.replace(' ', 'x')
'howxisxyourxdayx?'
作为替代方案,您可以使用正则表达式模块
import re
In [9]: re.sub(' ', 'x', text)
Out[9]: 'howxisxyourxdayx?'