Home > Backend Development > Python Tutorial > 简单的通用表达式求10乘阶示例

简单的通用表达式求10乘阶示例

WBOY
Release: 2016-06-16 08:45:04
Original
1393 people have browsed it

复制代码 代码如下:

(lambda x: lambda n: x(x)(n))(lambda f: lambda n: 1 if n == 0 else n*f(f)(n-1))(10)
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template