map的处理结果是一个迭代器,只能迭代一次。
num_1 = [1, 2, 10, 5, 3, 7]
ret = map(lambda x: x + 1, num_1)
print(ret)
# <map object at 0x000002B7B7A48048>
print(list(ret))
[2, 3, 11, 6, 4, 8]
map的处理结果是一个迭代器,只能迭代一次。
num_1 = [1, 2, 10, 5, 3, 7]
ret = map(lambda x: x + 1, num_1)
print(ret)
# <map object at 0x000002B7B7A48048>
print(list(ret))
[2, 3, 11, 6, 4, 8]