How can i combine all the contents of a List to one value Python
本问题已经有最佳答案,请猛点这里访问。
如果我得到某人的输入并将其放入列表中。我怎样才能把它组合成一根大绳子呢?
1 2 | user_input = input() listed = list(user_input) |
我在这方面遇到了麻烦,因为内容不明。是否要使它再次成为一个大字符串(组合列表的所有内容)。有什么我可以导入我的代码来为我做的吗
要将列表连接在一起,可以使用
1 2 3 | >>> ls = ['Hello,','world!'] >>> ' '.join(ls) 'Hello, world!' |