博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python map内建函数
阅读量:5335 次
发布时间:2019-06-15

本文共 899 字,大约阅读时间需要 2 分钟。

map(functioniterable...)

  Apply function to every item of iterable and return a list of the results. If additional iterable arguments are passed,function must take that many arguments and is applied to the items from all iterables in parallel. If one iterable is shorter than another it is assumed to be extended with None items. If function is None, the identity function is assumed; if there are multiple arguments,  returns a list consisting of tuples containing the corresponding items from all iterables (a kind of transpose operation). The iterable arguments may be a sequence or any iterable object; the result is always a list.

  map接收一个函数和一个可迭代对象(如列表)作为参数,用函数处理每个元素,然后返回新的列表。  

  ACM有时需要要a b c这样的一行格式输入,这时可以用map函数来处理,这里假设a,b,c都是整数。

a, b, c = map(int, raw_input().split())

  raw_input函数输入的是字符串,字符串的split方法用来将字符串分割成序列。

转载于:https://www.cnblogs.com/skyhacker/archive/2012/02/03/2337572.html

你可能感兴趣的文章
pandas 的算术运算和数据对齐
查看>>
R语言-增加图例
查看>>
linux 建立桌面快捷方式,让所有用户都能在桌面直接打开某软件
查看>>
CF1039E Summer Oenothera Exhibition 根号分治,LCT,ST表
查看>>
Linux安装JDK
查看>>
iptables原理详解(一)
查看>>
mySQL遇到的问题
查看>>
线性判别分析(线性回归、对数几率回归、线性判别分析和广义线性判别分析)...
查看>>
集群架构基础必会
查看>>
实现TCP连接的AT指令
查看>>
jquery 备忘笔记
查看>>
Ubuntu下安装eclipse
查看>>
MemCache
查看>>
Python3编写Windows服务程序
查看>>
麻省理工MaKey MaKey的电路板,触控无处不在,很强大。
查看>>
关于leap motion的原理和疑点
查看>>
Web前端,高性能优化
查看>>
【转载】Recommendations with Thompson Sampling (Part II)
查看>>
UML
查看>>
Javascript中decodeURI()与decodeURIComponent()区别
查看>>