python函数式编程,列表生成式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python函数式编程,列表生成式相关的知识,希望对你有一定的参考价值。

1.python 中常见的集中存储数据的结构:

  列表

  集合

  字典

  元组

  字符串

  双队列

  堆

其中最常见的就是列表,字典。

2.下面讲一些运用循环获取字典列表的元素

1 >>> dic={name:zhangsan,age:24,city:jinhua}
2 >>> for key,value in dic.items():
3     print(key,value)
4 
5     
6 name zhangsan
7 age 24
8 city jinhua

循环获取列表

>>> lists=[1,2,3,4,5]
>>> for item in lists:
    item+1

    
2
3
4
5
6

3.python函数式编程的一些介绍

Python关于函数编程的一些函数有:

  map(function,list),映射函数

  filter(),过滤函数

  reduce(),规约函数

  lambda函数

  列表生成式

1 >>> def inc(x):return x+1
2 >>> list(map(inc,lists))
3 [2, 3, 4, 5, 6]
4 将函数用lambda表达式,缩写为一行代码
5 >>> items=[1,2,3,4]
6 >>> list(map((lambda x:x+1),items))
7 [2, 3, 4, 5]
filter函数的使用
>>> list(filter((lambda x:x<3),items))
[1, 2]
1 reduce函数需要导入reduce模块
2 >>> from functools import reduce
3 >>> reduce((lambda x,y:x/y),items)
4 0.041666666666666664
5 函数式标称的最后一个概念是列表生成式
6 >>> s=[x**2 for x in range(3)]
7 >>> s
8 [0, 1, 4]

 

以上是关于python函数式编程,列表生成式的主要内容,如果未能解决你的问题,请参考以下文章

s14 第4天 关于python3.0编码 函数式编程 装饰器 列表生成式 生成器 内置方法

Python函数式编程,范围和变量。我哪里错了?

Python进阶(迭代,函数式编程,Collections类)

函数式编程(列表生成式生成器迭代器)

Python之函数式编程

Python 函数式编程