Python_lambda简单函数表达式

lambda表达式只能用于简单函数的书写

def funx(a):
    a+=1
    return a

print(funx(99))

用lambda实现上面函数:

funx = lambda a: a+1         # 创建了形式参数 a
    
                             #函数内容为 a+1  并返回了结果

print( funx(99))

结果:

100

 

posted @ 2018-09-05 20:29  yin_zhaozhao  阅读(217)  评论(0编辑  收藏  举报