gpt4 book ai didi

python - 将(字符+数字)列表转换为 python 中的简单字符串。如何?

转载 作者:太空宇宙 更新时间:2023-11-04 07:27:50 24 4
gpt4 key购买 nike

我正在制作一个 python 程序,我必须在其中列出由字符和数字组成的列表,并且我必须连接这些字符和数字以构成一个字符串例如 ['s','m','a','r','t','1','2','3'] 应该是 smart123。它不起作用,它给我类型错误,但我对类型错误在哪里感到困惑。有相同的列表类型。为此,我正在使用 **for** 循环。我的代码是:

list = ['s','m','a','r','t',1,2,3]
s = ""
for i in list:
s += i
print(s)

最佳答案

使用join():

list_ = ['s','m','a','r','t',1,2,3]
joined = ''.join([str(x) for x in list_])
print(joined)
# smart123

关于python - 将(字符+数字)列表转换为 python 中的简单字符串。如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55117004/

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