首頁 >後端開發 >Python教學 >為什麼我的遞歸函數在 Python 中回傳「None」?

為什麼我的遞歸函數在 Python 中回傳「None」?

Barbara Streisand
Barbara Streisand原創
2024-11-24 12:16:24215瀏覽

Why Does My Recursive Function Return `None` in Python?

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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn