#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)