gpt4 book ai didi

python - 在字符串中的特定位置插入字符

转载 作者:太空宇宙 更新时间:2023-11-04 09:28:51 25 4
gpt4 key购买 nike

我有以下问题。我想在特定列的以下字符串中的每个“)”之后插入“,”。

The Bahamas (All locations)Bermuda (All locatins)Romania (Cluj)Bulgaria (All locations)

我的想法是,我在同一个表的同一列的多行上有这种类型的字符串。请帮我解决这个问题。

我希望有:

The Bahamas (All locations),Bermuda (All locatins),Romania (Cluj),Bulgaria (All locations), 

为了拆分我需要的信息。

最佳答案

使用 str.replace():

In [1]: s1 = 'The Bahamas (All locations)Bermuda (All locatins)Romania (Cluj)Bulgaria (All locations)'

In [2]: s2 = s1.replace(')', '),')

In [3]: s2
Out[3]: 'The Bahamas (All locations),Bermuda (All locatins),Romania (Cluj),Bulgaria (All locations),'

关于python - 在字符串中的特定位置插入字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56538396/

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