python中的递归 关注公众号“轻松学编程”了解更多。 文章更改后地址:传送门 间接或直接调用自身的函数被称为递归函数。 间接: def func(): otherfunc() def otherfunc(): func(