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

python lambda 用途

时间:2014-12-22 11:04:04      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

可以让一个带参数函数,传递并以无参调用

 1 def test(a):
 2     print a
 3     
 4     
 5 a=test
 6 #
 7 #a()
 8 a=897987
 9 
10 fun=lambda : test(a)
11 
12 fun()

 

python lambda 用途

标签:

原文地址:http://www.cnblogs.com/aveenzhou/p/3809583.html

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