def factorial(n):
if n==1:
return 1
return n*factorial(n-1)
print(factorial(10))
本文标题:factorial 计算一个数的阶乘
本文链接:https://www.haomeiwen.com/subject/rzpctqtx.html
网友评论