gpt4 book ai didi

python - 在python中查找递归调用的级别

转载 作者:行者123 更新时间:2023-12-03 13:05:46 25 4
gpt4 key购买 nike

我有一个递归调用的函数,我想知道当前的递归级别。下面的代码显示了我用来计算它的方法,但它没有给出预期的结果。

例如。 :要查找系统路径的递归级别:

    import os
funccount = 0

def reccount(src):
global funccount
print "Function level of %s is %d" %(src, funccount)

def runrec(src):
global funccount
funccount = funccount + 1
lists = os.listdir(src)
if((len(lists) == 0)):
funccount = funccount - 1
reccount(src)
for x in lists:
srcname = os.path.join(src, x)
if((len(lists) - 1) == lists.index(x)):
if (not(os.path.isdir(srcname))):
funccount = funccount - 1
if os.path.isdir(srcname):
runrec(srcname)

runrec(C:\test)

问题:给定目录路径,打印目录的递归级别

目录结构是:
在我的目录结构中,我将调用函数“reccount(Test)”(函数将使用 MainFolder 的路径调用)。我想知道每个文件夹的递归调用级别。 (仅限目录)
Test:
|----------doc
|----------share
|----------doc
|----------file1
|----------bin
|----------common
|----------doc
|----------extras
|----------file2

当我调用该程序时,我得到以下结果:
    Function level of C:\test is 1
Function level of C:\test\bin is 2
Function level of C:\test\bin\common is 3
Function level of C:\test\bin\common\doc is 3
Function level of C:\test\doc is 3
Function level of C:\test\extras is 3
Function level of C:\test\share is 4
Function level of C:\test\share\doc is 5

如您所见,当它打印 bin/common/doc 的结果时,它打印 3 而不是 4,并且所有后续结果都是错误的

最佳答案

def some_method(data, level=0):


some_method(..., level=level+1)


if __name__ == '__main__':
some_method(my_data)

关于python - 在python中查找递归调用的级别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12399259/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com