def a(n): if n==1: print('asd') return 10 else: print(n) return n*a(n-1) 上面的return 10 为什么要写成 return 1 呢 就是为什么到最后的返回结果还要*10呢上面的
子木李
相关分类