摘要: 代码: def func(n): if n==1: return 1 return n*func(n-1) print(func(4)) 结果: 24 阅读全文
posted @ 2019-12-03 14:55 代码怪lh 阅读(211) 评论(0) 推荐(0)