将具有多种数据类型(字符串和整数)的列表转换为python中的字符串

时间:2018-07-17 02:17:33

标签: python python-3.x python-2.7

我在下面列出了多种数据类型(字符串和整数)。如何将其转换为字符串。

sample_list =['a','b',1,'c',2,4,'d']

下面的语句不起作用。

' '.join(sample_list)

1 个答案:

答案 0 :(得分:-2)

' '.join(map(str, sample_list))