gpt4 book ai didi

python - 仅替换字符串中最后一次出现的位置

转载 作者:太空宇宙 更新时间:2023-11-03 21:25:59 24 4
gpt4 key购买 nike

我有以下字符串:

s = 'JSON, XML, XLS, XLSX, CSV, TSV'

我想将其转换为末尾有一个“和”。是否可以做 replace仅在最后一次出现某些内容时进行操作,例如:

s.replace(', ', ', and ', -1)

==>

'JSON, XML, XLS, XLSX, CSV, and TSV'

最佳答案

s = 'JSON, XML, XLS, XLSX, CSV, TSV'

s_spl = s.split()
s_new = " ".join(s_spl[:-2]) + ' and ' + s_spl[-1]
print(s_new)

关于python - 仅替换字符串中最后一次出现的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53838671/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com