Python之shlex.join 用法及代码示例: 他是split()的逆方法 from shlex import join a = ['111','2222','3333'] print('' + join(a)) 输入结果: 111 222 3333