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

python之匿名函数

时间:2020-02-03 11:48:32      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:with   sof   mic   bsp   int   mil   结果   lambda   size   

1.fun=lambda x:x+2

   print(fun(10))                //输出结果为12

2.name=‘alex‘

   func=lambda x:x.startswith(‘a‘)

   print(func(name))           //输出结果为True

3.fun=lambda x,y,z:x+y+z

   res=fun(1,2,3)

   print(res)                       //输出结果为6

4.fun=lambda x,y,z:(x+1,y+1)

   res=fun(1,2)

   print(res)                         //输出结果为(2,3)

python之匿名函数

标签:with   sof   mic   bsp   int   mil   结果   lambda   size   

原文地址:https://www.cnblogs.com/cxydnxs/p/12254912.html

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