gpt4 book ai didi

python - 如何在文本中插入标签

转载 作者:行者123 更新时间:2023-12-01 06:08:53 26 4
gpt4 key购买 nike

我有这样的文字

或者像这样

我想在其中插入标签:

<tag1>I have a text like that</tag1>
<tag1>Or like that</tag1>

如何在 python 中实现这一点?

最佳答案

听起来更像是您想在标签之间插入文本。对吗?

'<tag1>{0}</tag1>'.format('I have a text like that')

如果它是字符串列表:

>>> l = ['I have a text like that', 'Or like that']
>>> ['<tag1>{0}</tag1>'.format(s) for s in l]
['<tag1>I have a text like that</tag1>', '<tag1>Or like that</tag1>']

关于python - 如何在文本中插入标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6810752/

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