gpt4 book ai didi

列表中的python项目添加到字符串

转载 作者:太空宇宙 更新时间:2023-11-04 06:53:21 25 4
gpt4 key购买 nike

我正在尝试将列表中的项目连接到一个字符串中。

list = ['a', 'b', 'c', 'd']
string = ''
for i in list:
string.join(str(i))

最佳答案

你不需要循环:

items = ['a', 'b', 'c', 'd']
result = "".join(items)

请注意,使用 list 作为变量名是个坏主意,因为这会阻止您使用 list 来表示内置类型。

关于列表中的python项目添加到字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8885630/

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