gpt4 book ai didi

python - 如何停止Python递归

转载 作者:行者123 更新时间:2023-11-30 23:00:27 25 4
gpt4 key购买 nike

我创建了一个递归搜索文件的函数,我希望它在找到第一个文件时停止递归:

def search_file(path):
for name in os.listdir(path):
sub = os.path.join(path, name)
if os.path.isfile(sub):
return sub#And break recursion
else:
search_file(sub)

最佳答案

返回一个标志,表明是否找到该文件。当您调用search_file时,如果返回值为True,则返回。

关于python - 如何停止Python递归,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35273905/

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