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