可以使用字符串的join方法,可以把列表的各个元素连接起来,字符串就是连个列表各元素的连接符。>>> l = ['I', 'want', 'a', 'apple', 'pi']>>> ' '.join(l)'I want a apple pi'