제공된 Python 코드에서 get_path라는 재귀 함수가 파일( rqfile)을 중첩된 사전(사전)에 포함합니다. 그러나 파일 경로를 찾아서 반환해야 하는 경우 함수는 None을 반환합니다. 코드는 다음과 같습니다.
def get_path(dictionary, rqfile, prefix=[]): for filename in dictionary.keys(): path = prefix + [filename] if not isinstance(dictionary[filename], dict): if rqfile in str(os.path.join(*path)): return str(os.path.join(*path)) else: get_path(directory[filename], rqfile, path)
이 문제를 해결하려면 함수가 재귀 호출의 결과를 반환해야 합니다. 기본적으로 Python 함수는 명시적인 return 문이 없으면 None을 반환합니다. 올바른 경로를 반환하려면 함수의 마지막 줄을 다음으로 바꾸세요.
return get_path(directory[filename], rqfile, path)
이 수정을 통해 함수는 재귀 호출 중에 찾은 경로를 반환합니다. 업데이트된 코드는 다음과 같습니다.
def get_path(dictionary, rqfile, prefix=[]): for filename in dictionary.keys(): path = prefix + [filename] if not isinstance(dictionary[filename], dict): if rqfile in str(os.path.join(*path)): return str(os.path.join(*path)) else: return get_path(directory[filename], rqfile, path)
위 내용은 중첩된 사전에서 파일을 검색할 때 내 재귀 Python 함수가 없음을 반환하는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!