码迷,mamicode.com
首页 > 编程语言 > 详细

python map的用法

时间:2019-03-10 16:11:03      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:调用   bsp   apple   第一个   使用   com   racket   str   color   

map() 会根据提供的函数对指定序列做映射。

第一个参数 function 以参数序列中的每一个元素调用 function 函数,返回包含每次 function 函数返回值的新列表。

 

>>>def square(x) :            # 计算平方数
...     return x ** 2
...
>>> map(square, [1,2,3,4,5])   # 计算列表各个元素的平方
[1, 4, 9, 16, 25]
>>> map(lambda x: x ** 2, [1, 2, 3, 4, 5])  # 使用 lambda 匿名函数
[1, 4, 9, 16, 25]

# 提供了两个列表,对相同位置的列表数据进行相加
>>> map(lambda x, y: x + y, [1, 3, 5, 7, 9], [2, 4, 6, 8, 10])
[3, 7, 11, 15, 19]

1 sentence=The Mississippi River
2 def count_chars(s):
3     s=s.lower()
4     count = list(map(s.count,s))
5     print(count)
6     return (max(count))
7 print(count_chars(sentence))
[1, 1, 2, 2, 1, 5, 4, 4, 5, 4, 4, 5, 2, 2, 5, 2, 2, 5, 1, 2, 2]
5

python map的用法

标签:调用   bsp   apple   第一个   使用   com   racket   str   color   

原文地址:https://www.cnblogs.com/NPC-assange/p/10505646.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!