【说站】Python map接收参数的探究
2024-11-23
25
Python map接收参数的探究
说明
1、map函数接收两个参数,一个是函数,另一个是Iterable。
2、map将传输的函数依次作用于序列的每一个元素,并将结果返回新的Iterator。
实例
# map 使用 # 求arr每个元素平方 arr = [1, 2, 3, 4, 5, 6, 7, 8] def square(x): return x * x result = map(square, arr) print(list(result)) # lambda 与 map 一起使用 result1 = map(lambda x: x * x, arr) print(list(result1)) # lambda 与 map 一起使用 多个参数; 如果arr与arr1个数不同,只计算到最少个数,如下arr1个数比arr少 只会返回 5个元素,反之 arr个数比arr1少 只会计算到arr个数位 arr1 = [1, 2, 3, 4, 5, 6] result2 = map(lambda x, y: x * x + y, arr, arr1) print(list(result2))
以上就是Python map接收参数的探究,希望对大家有所帮助。更多Python学习指路:python基础教程
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
更新于:15天前赞一波!1
相关文章
- 【说站】python tqdm有哪些用法
- 【说站】python正态分布中的normal函数
- 【说站】python socket连接客户端的方法
- 【说站】python socketserver处理客户端的流程
- 【说站】python TCP和UDP协议的区别分析
- 【说站】python if三元表达式如何使用
- 【说站】python自定义进度条显示信息
- 【说站】python线程阻塞的解决
- 【说站】python binomial生成二项分布随机数
- 【说站】python二项分布的概率使用
- 【说站】python计数排序法是什么
- 【说站】python归并排序是什么
- 【说站】python使用choice生成随机数
- 【说站】python归并排序的实现原理
- 【说站】python希尔排序的使用原理
- 【说站】python Task如何在协程调用
- 【说站】python事件循环如何使用?
- 【说站】await在python协程函数的使用
- 【说站】python使用jinja2进行渲染
- 【说站】python统计字符串字符出现次数
文章评论
评论问答