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

Python 高阶函数:匿名函数

时间:2018-07-17 18:10:37      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:bin   spl   没有   ret   inline   sha   images   image   mil   

格式:

        lambda 参数:表达式(只能一个)  ------->  lambda x: x * x   ==  def f(x): return x * x


匿名函数特点:

                1.没有函数名,不用担心函数名冲突问题

                2.可赋给变量   --------->  g =  lambda x: x * x

                3.可做返回值   --------->  def cal(x , y): return lambda: x * y



#!/usr/bin/python

ls = map(lambda x: x * x, [1, 2, 3, 4, 5])   #map(函数,list)
print ls;

技术分享图片




Python 高阶函数:匿名函数

标签:bin   spl   没有   ret   inline   sha   images   image   mil   

原文地址:http://blog.51cto.com/13502993/2145876

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