组合列表中的对象。蟒蛇

时间:2015-07-07 02:40:02

标签: python list object

我知道如何将对象与.append和.extend等组合在一起,但我无法弄清楚如何将列表中的单个对象组合成一个对象。

实施例

我如何更改此列表: List = [“h”,“e”,“l”,“l”,“o”]

进入此列表: List = [“你好”]

1 个答案:

答案 0 :(得分:5)

可以使用

轻松完成
["".join(list)]

对于其他用途,您可以替换""任何你希望成为分界仪的角色。例如

my_list = ["these", "should", "be", "separated", "by", "commas"]
print ",".join(my_list)

将输出

"these,should,be,separated,by,commas"