如何将字符串添加到空变量中以形成长单词?

时间:2019-01-20 22:54:13

标签: python string variables add

所以..我想将列表中的所有对象放在一起,我的想法是创建一个没有任何变量的变量,并进行for循环以将字符串添加到变量中……但是它并没有工作:(有帮助吗?

我搜索了一个答案,但在网上找不到任何内容...我非常菜鸟,很抱歉,如果错了。

sounds = ["super", "cali", "fragil", "istic", "expi", "ali", "docious"]
x=""
for s in sounds:
    x+s
print(x)

我希望x最终会成为“超级校准狂”。

1 个答案:

答案 0 :(得分:0)

您可以使用join

sounds = ["super", "cali", "fragil", "istic", "expi", "ali", "docious"]

x = "".join(sounds)

print(x)

关于您的解决方案,您缺少了=

sounds = ["super", "cali", "fragil", "istic", "expi", "ali", "docious"]
x=""
for s in sounds:
    x += s
print(x)

您得到的是同一件事:

supercalifragilisticexpialidocious