所以..我想将列表中的所有对象放在一起,我的想法是创建一个没有任何变量的变量,并进行for循环以将字符串添加到变量中……但是它并没有工作:(有帮助吗?
我搜索了一个答案,但在网上找不到任何内容...我非常菜鸟,很抱歉,如果错了。
sounds = ["super", "cali", "fragil", "istic", "expi", "ali", "docious"]
x=""
for s in sounds:
x+s
print(x)
我希望x最终会成为“超级校准狂”。
答案 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