python 匿名函数 day15
Posted wangleiyifan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 匿名函数 day15相关的知识,希望对你有一定的参考价值。
基本形式
#形式为:lambda x:x+1 def calc(x): return x+1 res = calc(10) print(res) print(lambda x:x+1) func = lambda x:x+1 print(func(10))
lambda 默认自带return
以上是关于python 匿名函数 day15的主要内容,如果未能解决你的问题,请参考以下文章