使用 Python 将多个字符串元素列表转换为单个元素以逗号分隔的列表
Posted
技术标签:
【中文标题】使用 Python 将多个字符串元素列表转换为单个元素以逗号分隔的列表【英文标题】:Convert multiple string elements list to a list with single element split by comma using Python 【发布时间】:2022-01-20 02:24:48 【问题描述】:我有一个包含字符串元素的列表:lst = ['h', 'e', 'l', 'l', 'o']
,我想将其转换为单个元素列表,但由 ,
拆分。
预期的列表将如下所示:
['h, e, l, l, o']
我该怎么做?
【问题讨论】:
【参考方案1】:你可以使用字符串连接:
lst = ['h', 'e', 'l', 'l', 'o']
output = [', '.join(lst)]
print(output) # ['h, e, l, l, o']
【讨论】:
以上是关于使用 Python 将多个字符串元素列表转换为单个元素以逗号分隔的列表的主要内容,如果未能解决你的问题,请参考以下文章