递归就是函数在执行过程调用自己。
def func(n):
print(n)
func(n+1)
python 默认递归次数为1000次,这个默认值是可以修改的。
posted on 2019-05-20 09:59 kingforn 阅读(126) 评论(0) 编辑 收藏 举报