第16068题 单选
Python中使用map函数将列表l=['2','4','6','8']转换为整数类型列表[2,4,6,8]的正确写法是以下哪项?
A
map(int,l)
B
list(map(int,l))
C
map(l,int)
D
list(map(l,int))