使用map函数可以实现列表数据元素类型的转换,而无需通过循环。则将列表l=['2','4','6','8']转换为列表[2,4,6,8]的函数写法为?( )
map(int,l)
list(map(int,l))
map(l,int)
list(map(l,int))