下列代码的运行结果是?( )
l = list(map(float, (1, 2, 3, 4))) print(l)
[1,2,3,4]
['1','2','3','4']
[1.0,2.0,3.0,4.0]
['1.0','2.0','3.0','4.0']