前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Python -- filter,map

Python -- filter,map

作者头像
py3study
发布2020-01-15 10:47:41
4270
发布2020-01-15 10:47:41
举报
文章被收录于专栏:python3python3

1.

filter:

Type:    builtin_function_or_method Base Class:  <type 'builtin_function_or_method'> String Form:  <built-in function filter> Namespace:  Python builtin Docstring:         filter(function or None, sequence) -> list, tuple, or string         Return those items of sequence for which function(item) is true.    If         function is None, return the items that are true.    If sequence is a tuple         or string, return the same type, else return a list.

2.

map:

Type:    builtin_function_or_method Base Class:  <type 'builtin_function_or_method'> String Form:  <built-in function map> Namespace:  Python builtin Docstring:         map(function, sequence[, sequence, ...]) -> list         Return a list of the results of applying the function to the items of         the argument sequence(s).    If more than one sequence is given, the         function is called with an argument list consisting of the corresponding         item of each sequence, substituting None for missing values when not all         sequences have the same length.    If the function is None, return a list of         the items of the sequence (or a list of tuples if more than one sequence).

3.

reduce:

Type:    builtin_function_or_method Base Class:  <type 'builtin_function_or_method'> String Form:  <built-in function reduce> Namespace:  Python builtin Docstring:         reduce(function, sequence[, initial]) -> value         Apply a function of two arguments cumulatively to the items of a sequence,         from left to right, so as to reduce the sequence to a single value.         For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates         ((((1+2)+3)+4)+5).    If initial is present, it is placed before the items         of the sequence in the calculation, and serves as a default when the         sequence is empty.

以上都是从ipython中截出来的官方Doc,放心理解。

等我深刻理解后会翻译出来的(没理解不敢翻译,怕误人子弟啦,呵呵)

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2019-06-25 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档