码迷,mamicode.com
首页 > 编程语言 > 详细

Python练习3->阶乘

时间:2015-05-30 13:27:03      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

1 def fact(n):
2     if n==1:
3         return 1
4     return n*fact(n-1)
5 
6 n=int(raw_input("Please Input The Number of N:  "))
7 print fact(n)

 

Python练习3->阶乘

标签:

原文地址:http://www.cnblogs.com/Curious-Python/p/4540150.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!