python递归
Posted 月半王令
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python递归相关的知识,希望对你有一定的参考价值。
#自己调自己,默认递归深度是1000,实际测试997次,998会报错
def func(count):
print("我是谁" +str(count))
func(count+1)
func(1)
#修改递归深度,但不一定可以到设置的值
import sys
sys.setrecursionlimit(10000)
应用场景:遍历树形结构
import os
filePath = "d:sylarpython_workspace"
def read(filePath, n):
it = os.listdir(filePath) # 打开文件夹
for el in it:
#print(el) #获取的是文件夹和文件的名字
#获取到文件夹文件的路径
fp = os.path.join(filePath, el) # 获取到绝对路径
if os.path.isdir(fp): # 判断是否是文件夹
print(" "*n,el) #打印文件夹名
read(fp, n+1) # 又是文件夹. 继续读取内部的内容 递归入口
else:
print(" "*n,el) # 递归出口
read(filePath, 0)
以上是关于python递归的主要内容,如果未能解决你的问题,请参考以下文章