首页
编程
java
php
前端
首页
编程
java
php
前端
函数的返回值是函数的本身会怎样?
def fun():
print(1)
return fun()
函数递归调用啊
函数递归自己调用自己,会无限死循环,最终会因为递归栈溢出而出错。
如有帮助,望采纳!谢谢!
点击展开全文