map是匹配,lambda是匿名函数
//input
list(map(lambda x:x*x,[1,2,3,4,5]))
//output
[1, 4, 9, 16, 25]
map是匹配,lambda是匿名函数
//input
list(map(lambda x:x*x,[1,2,3,4,5]))
//output
[1, 4, 9, 16, 25]
本文标题:python基础-4-数据分析python——map and 匿
本文链接:https://www.haomeiwen.com/subject/arspmqtx.html
网友评论