def fact(n):if n <= 1:return 1temp = fact(n-1)product = temp * nreturn productprint(fact(4))最后结果是24,请解释一下为什么最后temp=6的时候n=4,谢谢!
青春有我
相关分类