Python 中的遞歸函數返回None 已解決
嘗試在遞歸函數中返迴路徑時,可能會出現「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)
遞歸呼叫以 get_path(directory[filename], rqfile, path) 結束,沒有回傳。這表示如果 rqfile 不在 str(os.path.join(*path)) 中,則函數結束時不會明確傳回任何內容,導致預設回傳值 None。
為了解決此問題,遞歸結果應該像這樣返回:
else: return get_path(directory[filename], rqfile, path)
透過始終在函數末尾返回,無論是否是遞歸調用,我們確保明確返回
請注意,if not isinstance(dictionary[filename], dict): 分支之後的else可以被刪除,因為函數在兩種情況下都應該返回:當 rqfile 時位於路徑中,當不在路徑中時,不需要 else 分支來簡單地結束函數。
以上是為什麼我的遞歸函數在 Python 中回傳「None」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!