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