首頁 >後端開發 >Python教學 >為什麼全域變數沒有在函數內更新,導致無限迴圈?

為什麼全域變數沒有在函數內更新,導致無限迴圈?

Linda Hamilton
Linda Hamilton原創
2024-10-19 12:39:29475瀏覽

Why is a Global Variable not Updating Within a Function, Resulting in an Infinite Loop?

函數和循環之間變數作用域的差異

此問題解決了全域變數未在函數內更新的問題,導致無限循環。給出的程式碼片段如下:

<code class="python">done = False

def function():
    for loop:
        code
        if not comply:
            done = True  #let's say that the code enters this if-statement

while done == False:
    function()</code>

所提供的解釋表明,此問題的原因在於函數與循環中變數的範圍。在 Python 中,函數創建自己的命名空間,與全域命名空間分開。因此,在函數內為done賦值並不會修改全域變數done。

要解決此問題,答案建議在函數內使用global關鍵字來明確存取全域變數:

<code class="python">def function():
    global done  # Access the global variable
    for loop:
        code
        if not comply:
            done = True</code>

透過使用global,函數能夠修改全域變數done,在滿足if條件時有效地結束無限迴圈。

答案進一步建議了偵錯技術,例如使用偵錯器或列印語句來追蹤執行流程並確定問題出現的位置。

以上是為什麼全域變數沒有在函數內更新,導致無限迴圈?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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