递归 发表于 2021-09-27 更新于 2022-10-29 分类于 python基础知识第3版 这是文章开头,显示在主页面,详情请点击此处。 简介 123456789101112131415# coding:utf-8count =0def test(): global count count += 1 if count != 5: print('count终止条件不满足,重新执行自己,当前count是:%s' %count) return test() else: print('count is %s'%count)test()