📜  如何在python代码示例中迭代列表

📅  最后修改于: 2022-03-11 14:45:10.657000             🧑  作者: Mango

代码示例6
lst = [10, 50, 75, 83, 98, 84, 32] 
 
res = list(map(lambda x:x, lst))
 
print(res)