标签: python string python-3.x
我有一个代码
a = "hello world" a.split(' ')
然后它会做其他事情,然后在打印时打印出像这样的
['hello','world']
如何让它改回印刷
hello word
提前感谢您的帮助!
答案 0 :(得分:3)
根据列表,您可以使用' '.join:
' '.join
s = ['hello','world'] new_s = ' '.join(s)
输出:
'hello world'