• 欢迎访问开心洋葱网站,在线教程,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站,欢迎加入开心洋葱 QQ群
  • 为方便开心洋葱网用户,开心洋葱官网已经开启复制功能!
  • 欢迎访问开心洋葱网站,手机也能访问哦~欢迎加入开心洋葱多维思维学习平台 QQ群
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏开心洋葱吧~~~~~~~~~~~~~!
  • 由于近期流量激增,小站的ECS没能经的起亲们的访问,本站依然没有盈利,如果各位看如果觉着文字不错,还请看官给小站打个赏~~~~~~~~~~~~~!

Filter, Map & Reduce of lists示例展示

python 水墨上仙 1280次浏览

Filter, Map & Reduce of lists

# [代码名字: Filter, Map & Reduce of lists]
# [代码分类: Python Core]
# [代码描述: Simple examples to show common features in everyday work with lists]
# [代码作者: Benjamin Klueglein <scheibenkaes@googlemail.com>]
# [代码协议: GPL]
numbers = range(1, 20, 1) # Numbers from 1 to 20
#########################
# Filtering of lists:
#	Pick a amount of items which match a certain condition
#########################
# e.g. Get all odd numbers
odd_numbers = filter(lambda n: n % 2, numbers)
print odd_numbers
# prints [1, 3, 5, 7, 9, 11, 13, 15, 17, 19]
#########################
#########################
# Mapping of lists:
# 	Apply a function to each item and return the result of each invocation in a list
#########################
# Calculate the square of two for each number
squared_numbers = map(lambda n: n ** 2, numbers)
# Alternate approach:
squared_numbers = [n ** 2 for n in numbers]
print squared_numbers
# prints [1, 4, 9, 16, 25, 36, 49, 64, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361]
#########################
#########################
# Reducing of lists
#	 Apply a function of two arguments cumulatively to the items of a sequence,
#    from left to right, so as to reduce the sequence to a single value.
#	 (Taken from reduce docstring)
#########################
# Sum up all numbers
sum_of_numbers = reduce(lambda n, m: n + m, numbers)
print sum_of_numbers
# prints 190
#########################

 


开心洋葱 , 版权所有丨如未注明 , 均为原创丨未经授权请勿修改 , 转载请注明Filter, Map & Reduce of lists示例展示
喜欢 (0)
加载中……