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

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

num_l=[1,2,10,5,3,7]#lambda x:x+1# def add_one(x):#     return x+1#lambda x:x+1# def reduce_one(x):#     return x-1#lambda x:x**2# def ps(x):#     return x**2def map_test(func,array):#func=lambda x:x+1    arrary=[1,2,10,5,3,7]    ret=[]    for i in array:        res = func(i)        ret.append(res)    return retprint(map_test(lambda x:x+1,num_l))print(map_test(lambda x:x-1,num_l))print(map_test(lambda x:x**2,num_l))# for i in res:#     print(i)# print(map_test(add_one,num_l))# print(map_test(reduce_one,num_l))# print(map_test(ps,num_l))结果:[2, 3, 11, 6, 4, 8][0, 1, 9, 4, 2, 6][1, 4, 100, 25, 9, 49]

 

转载于:https://www.cnblogs.com/charon2/p/10375548.html

你可能感兴趣的文章
机房带宽暴涨问题分析及解决方法
查看>>
iOS 绕过相册权限漏洞
查看>>
我的友情链接
查看>>
XP 安装ORACLE
查看>>
八、 vSphere 6.7 U1(八):分布式交换机配置(vMotion迁移网段)
查看>>
[转载] 中华典故故事(孙刚)——19 万岁
查看>>
修改hosts文件里面的主机名,oralce asm无法启动
查看>>
Maven学习总结(十)——使用Maven编译项目gbk的不可映射问题
查看>>
php5编译安装常见错误和解决办法集锦
查看>>
Linux远程访问及控制
查看>>
MongoDB实战系列之五:mongodb的分片配置
查看>>
Unable to determine local host from URL REPOSITORY_URL=http://
查看>>
java基础(1)
查看>>
ORACLE配置,修改tnsnames.ora文件实例
查看>>
Workstation服务无法启动导致无法访问文件服务器
查看>>
.Net组件程序设计之远程调用(二)
查看>>
ant中文教程
查看>>
Linux常用命令(一)
查看>>
【VMCloud云平台】SCAP(四)租户(一)
查看>>
linux释放内存的方法
查看>>