运行下列Python代码,正确的结果是?( )
a = [1, 2, 3] b = list(map(lambda x: x * 2, a)) print(b)
[1,2,3]
[2,4,6]
(2,4,6)
None