最佳答案
如何在 Python 中将列表转换为空格分隔的字符串?
例如,我想转换这个列表:
my_list = ["how", "are", "you"]
进入字符串 "how are you"
。
空格很重要,我不想要 "howareyou"
。