我有以下字符串:
text = "i eat salad"
我想将eat
更改为ate
以获取:
text = "i ate salad"
我必须使用加入或拆分吗?
text.split()[1] = 'ate'
print(text)
我在尝试失败之前尝试过这个。
答案 0 :(得分:0)
只需拆分并存储结果。
然后更改第二个单词,然后再次加入:
text = "i eat salad"
words = text.split()
words[1] = 'ate'
print(" ".join(words))
答案 1 :(得分:0)
使用replace()进行更改。
text = "i eat salad"
text = text.replace('eat', 'ate')
print(text)