不能在地图对象上多次使用list()

时间:2016-12-04 15:11:06

标签: python list python-3.x

有谁知道原因:

x2 = map(lambda x: x, [2, 4, 6])
print(list(x2)) 
print(list(x2))

给出:

[2, 4, 6]
[]

好像我只能在list对象上使用map一次。我不明白发生了什么。

0 个答案:

没有答案