标签:参数 div turn style 数值 temp 死循环 col class
# 递归函数其实就是一种编程技巧,实际开发中很少用,因为当参数值过大时,会导致栈溢出 # 递归函数俩个特点:1、一定要写出口 2、自己调用自己 def jc(num): if num == 1: # 递归函数一定要有出口,否则会导致死循环 return 1 temp = jc(num-1) # 自己调用自己 return temp*num
标签:参数 div turn style 数值 temp 死循环 col class
原文地址:https://www.cnblogs.com/lz-tester/p/9275163.html