下列关于map()函数的代码,其运行结果是?( )
res=map(str,[3, 6, 8, 4, 5]) print(list(res))
'36845'
[3, 6, 8, 4, 5]
[6, 12, 16, 8,10]
['3', '6', '8', '4', '5']