代码片段
公众号:编程技巧
编程小技巧
加入Q群
导航菜单
代码片段
PHP
Java
c/c++
js/jquery
C#
Perl
Python
Ruby
HTML
CSS
Groovy
SQL
Lua
Golang
Shell
Objective-C
ASP/Basic
首页
python 代码片段
正文
阶乘
2015/10/31
15249
def fact(x): return x > 1 and x * fact(x - 1) or 1 print fact(6)
返回顶部"