摘要: 递归:函数自己内部调用自己 能递归的次数-递归深度 i=1 def store(): global i print(i) i+=1 store() store() 打印出996后就报错了:RecursionError: maximum recursion depth exceeded while c 阅读全文
posted @ 2024-12-05 14:07 天子骄龙 阅读(16) 评论(0) 推荐(0)