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

Python基础-常用的内置函数

时间:2017-10-16 13:39:26      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:tools   style   lis   reduce   blog   tool   add   span   lam   

内置函数filter
str = [a, b, c, d]
def fansik(num):
    if num != "a":
        return num

ret = filter(fansik, str)
print(ret)
print(list(ret))
内置函数map
str = [a, d, b]
def fansik(num):
    return num + "fansik"
ret = map(fansik, str)
print(ret)
print(list(ret))
内置函数reduce
from functools import reduce
def add1(x, y):
    return x + y
print(reduce(add1, range(1, 101)))
内置函数lambda
from functools import reduce
print(reduce(lambda x, y: x + y, range(1, 101)))

 

Python基础-常用的内置函数

标签:tools   style   lis   reduce   blog   tool   add   span   lam   

原文地址:http://www.cnblogs.com/fansik/p/7676216.html

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