我需要在字符串中的X之间添加一个空格。程序在一个字段中进行测量,我需要能够在进行计算之前将整数与“x”分开。
例如:“12x24”应为“12 x 24”
答案 0 :(得分:2)
使用str.replace()
函数将'x'
替换为'<space>x<space>'
:
>>> my_str = '12x24'
>>> my_str.replace('x', ' x ')
'12 x 24'
答案 1 :(得分:1)
使用replace
方法将' x '
替换为'x'
:
string.replace('x', ' x ')