python - can lambda have more than one return

此生再无相见时 提交于 2019-12-02 22:01:37

Yes, it's possible. Because an expression such as this at the end of a function:

return a, b

Is equivalent to this:

return (a, b)

And there, you're really returning a single value: a tuple which happens to have two elements. So it's ok to have a lambda return a tuple, because it's a single value:

lambda a, b: (a, b) # here the return is implicit

Sure:

lambda a, b: (a + 1, b * 1)

what about:

lambda a,b: (a+1,b*1)
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!