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