标签:python
#lambda 没有名字的函数,特别简单的函数,只有return语句的函数 #语法 lambda 返回值 def hello(x): return x[1] print hello([1,2]) hello=lambda x:x[1] hello1=lambda x:x[0]+x[1] hello2=lambda x,y:x*y print hello([1,2]) print hello1([3,4]) print hello2(2,3)
本文出自 “不抛弃!不放弃” 博客,谢绝转载!
标签:python
原文地址:http://thedream.blog.51cto.com/6427769/1831636