摘要: """ 目录: 一 map 二 filter 三 reduce 四 总结 """ 一 map def square(x): return x ** 2 if __name__ == '__main__': list_1 = [1, 2, 3, 4, 5] map_object = map(squar 阅读全文
posted @ 2022-07-06 03:20 火焰马 阅读(17) 评论(0) 推荐(0) 编辑