博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Python] map Method
阅读量:5997 次
发布时间:2019-06-20

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

Map

applies a function to all the items in an input_list

 

Blueprint

map(function, list_of_inputs)

  

Most of the times we want to pass all the list elements to a function one-by-one and then collect the output. For instance:

items = [1, 2, 3, 4, 5]squared = []for i in items:    squared.append(i**2)

  

Map allows us to implement this in a much simpler and nicer way. Here you go:

 
items = [1, 2, 3, 4, 5]squared = list(map(lambda x: x**2, items))

  

转载于:https://www.cnblogs.com/KennyRom/p/6607289.html

你可能感兴趣的文章
DICOM医学图像处理:WEB PACS初谈
查看>>
【C#学习笔记】反射的简单用法
查看>>
算法笔记_209:第六届蓝桥杯软件类决赛部分真题(Java语言B组)
查看>>
Linux 定时任务 crontab
查看>>
double x = 10 ,y = 0;y = x % 2; 这个表达式正确吗?
查看>>
android 用java代码设置布局、视图View的宽度/高度或自适应
查看>>
LINUX6安装Oracle10g无法启动安装界面解决
查看>>
十二、平衡二叉树(2-3查找树、红黑二叉树)
查看>>
Apache的.htaccess项目根文件夹伪静态设置规则
查看>>
【Unity笔记】摄像机跟随目标角色
查看>>
EditText实现输入限制和校验
查看>>
如何看待Linux操作系统的用户空间和内核空间
查看>>
VLOOKUP函数将一个excel表格的数据匹配到另一个表中
查看>>
python文件
查看>>
2017-11-1 今天完成的界面,包括js交互实现
查看>>
springboot h2数据库的配置
查看>>
java 内存模型
查看>>
eos中BM与有BM特色的去中心化。区块链世界,白皮书为共识,代码为法律。
查看>>
数据库:Mysql中“select ... for update”排他锁分析
查看>>
1.numpy的用法
查看>>