浅析python函数式编程

作者:程序猿-悟空 时间:2022-07-14 22:39:16 

目录

  • map

  • filter

  • reduce

  • zip

  • sortedmap

map

其中,function 参数表示要传入一个函数,其可以是内置函数、自定义函数或者 lambda 匿名函数;iterable 表示一个或多个可迭代对象,可以是列表、字符串等。
map() 函数的功能是对可迭代对象中的每个元素,都调用指定的函数,并返回一个 map 对象。


listDemo = [1, 2, 3, 4, 5]
new_list = map(lambda x: x * 2, listDemo)
print(list(new_list))

filter

filter() 函数的功能是对 iterable 中的每个元素,都使用 function 函数判断,并返回 True 或者 False,最后将返回 True 的元素组成一个新的可遍历的集合。


listDemo = [1, 2, 3, 4, 5]
new_list = filter(lambda x: x % 2 == 0, listDemo)
print(list(new_list))

reduce

reduce() 函数通常用来对一个集合做一些累积操作,其基本语法格式为:
reduce(function, iterable)


import functools
listDemo = [1, 2, 3, 4, 5]
product = functools.reduce(lambda x, y: x * y, listDemo)
print(product)

zip


>>>a = [1,2,3]
>>>b = [4,5,6]
>>>c = [4,5,6,7,8]
>>>zipped = zip(a,b) # 打包为元组的列表
[(1, 4), (2, 5), (3, 6)]
>>>zip(a,c)     # 元素个数与最短的列表一致
[(1, 4), (2, 5), (3, 6)]
>>>zip(*zipped)   # 与 zip 相反,可理解为解压,返回二维矩阵式
[(1, 2, 3), (4, 5, 6)]

sorted


>>> L=[('b',2),('a',1),('c',3),('d',4)]
>>> sorted(L, key=lambda x:x[1])        # 利用key
[('a', 1), ('b', 2), ('c', 3), ('d', 4)]

>>> students = [('john', 'A', 15), ('jane', 'B', 12), ('dave', 'B', 10)]
>>> sorted(students, key=lambda s: s[2])      # 按年龄排序
[('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A', 15)]

来源:https://www.cnblogs.com/changting/p/13720264.html

标签:python,函数,函数式编程
0
投稿

猜你喜欢

  • ASP连接Access数据库的几种方法

    2013-06-01 20:33:19
  • sqlserver中创建链接服务器图解教程

    2024-01-23 18:14:13
  • Python扫描IP段查看指定端口是否开放的方法

    2023-10-14 22:57:17
  • python中dir函数用法分析

    2023-09-05 10:23:09
  • 如何使用Pytorch完成图像分类任务详解

    2023-10-05 16:37:05
  • Python实现检测文件MD5值的方法示例

    2023-05-08 11:41:45
  • 详解Django中的ifequal和ifnotequal标签使用

    2023-06-24 05:07:04
  • 基于JavaScript如何实现私有成员的语法特征及私有成员的实现方式

    2024-04-22 22:37:54
  • vue @click @tap重叠事件区分方式

    2024-05-10 14:10:04
  • JS合并数组的几种方法及优劣比较

    2024-06-05 10:02:00
  • 安全地关闭MySQL服务的教程

    2024-01-16 23:50:13
  • 解决pycharm编辑区显示yaml文件层级结构遇中文乱码问题

    2022-03-21 10:30:42
  • 查找python项目依赖并生成requirements.txt的方法

    2021-11-27 20:41:43
  • php 静态页面中显示动态内容

    2023-11-18 22:09:22
  • ASP动态生成的javascript表单验证代码

    2008-10-13 20:11:00
  • 一文带你吃透Python中的日期时间模块

    2023-01-11 19:33:32
  • 使用mss2sql工具将SqlServer转换为Mysql全记录

    2024-01-24 11:59:37
  • 利用python进行数据加载

    2022-05-11 19:55:00
  • python 实现 hive中类似 lateral view explode的功能示例

    2021-08-20 13:51:45
  • Python实例方法与类方法和静态方法介绍与区别分析

    2023-06-18 05:59:53
  • asp之家 网络编程 m.aspxhome.com