摘要: 函数的嵌套 函数的嵌套其实就与if、while、for循环的嵌套一样,这里只做简单展示。 # 函数嵌套死循环 def index(): func() print('来自index') def func(): index() print('来自func') func() 递归函数 在编程语言中,函数直 阅读全文
posted @ 2022-03-21 17:00 Yume_Minami 阅读(200) 评论(0) 推荐(0) 编辑