## 递归
### 递归算法原理(阶乘计算)
递归算法:
递归算法
1.定义递归头
2.递归体
def fact(n):
if n==1:
return n
else:
return n*fact(n-1)
print(fact(5))