gpt4 book ai didi

python - 如何将列表中的项目连接(连接)到单个字符串

转载 作者:IT老高 更新时间:2023-10-28 12:03:27 24 4
gpt4 key购买 nike

如何将字符串列表连接成单个字符串?

例如,给定 ['this', 'is', 'a', 'sentence'] , 如何获得 "this-is-a-sentence" ?


关于处理独立变量中的几个字符串,见How do I append one string to another in Python? .

相反的过程 - 从字符串创建列表 - 见 How do I split a string into a list of characters?How do I split a string into a list of words?视情况而定。

最佳答案

使用 str.join :

>>> words = ['this', 'is', 'a', 'sentence']
>>> '-'.join(words)
'this-is-a-sentence'
>>> ' '.join(words)
'this is a sentence'

关于python - 如何将列表中的项目连接(连接)到单个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12453580/

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