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