如何将包含多个字符的列表转换为字符串? [复制]
Posted
技术标签:
【中文标题】如何将包含多个字符的列表转换为字符串? [复制]【英文标题】:How do you turn lists with multiple characters into strings? [duplicate] 【发布时间】:2015-04-16 04:48:37 【问题描述】:我对编程很陌生,并且看过许多类似问题的答案,但它们并没有产生我想要的结果。你们中的任何人都可以帮助我吗? 示例代码:
shapes = ["tri", "angle"]
groupedShapes = "triangle"
【问题讨论】:
【参考方案1】:根据doc's:
string.join(words[, sep]) 将单词列表或元组与中间出现的 sep 连接起来。 sep 的默认值是一个空格字符。
shapes = ["tri", "angle"]
groupedShapes = "".join(shapes)
# "triangle"
【讨论】:
以上是关于如何将包含多个字符的列表转换为字符串? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
如何将 JSON 字符串转换为 JSON 数组列表? [复制]