首頁 > 後端開發 > Python教學 > Python 函數中的 Return 與 Print:有什麼區別?

Python 函數中的 Return 與 Print:有什麼區別?

Susan Sarandon
發布: 2025-01-01 07:16:10
原創
267 人瀏覽過

Return vs. Print in Python Functions: What's the Difference?

返回與列印函數輸出

在 Python 函數的上下文中,理解返回和列印輸出之間的區別至關重要。雖然這兩個操作都顯示數據,但它們有不同的用途,並且對程式碼功能有影響。

列印

print() 函數只是將提供的資料輸出到控制台。它不儲存資料或使其可供進一步使用。輸出是臨時的,一旦程式碼繼續執行,就會消失。

傳回

函數中的 return 語句結束函數呼叫並將資料「傳回」給呼叫者。傳回的資料可以分配給變數或在後續代碼語句中使用。即使函數呼叫結束,從函數傳回的資料仍然存在。

範例

考慮以下autoparts() 函數:

def autoparts():
    parts_dict = {}
    list_of_parts = open('list_of_parts.txt', 'r')
    
    for line in list_of_parts:
        k, v = line.split()
        parts_dict[k] = v

    # Print the dictionary without returning it
    print(parts_dict)
登入後複製

執行此函數會將parts_dictole:

{'part A': 1, 'part B': 2, ...}
登入後複製

但是,在autoparts()函數之外無法存取字典本身。為了使其可用,我們需要使用return 語句傳回字典:

def autoparts():
    parts_dict = {}
    list_of_parts = open('list_of_parts.txt', 'r')
    
    for line in list_of_parts:
        k, v = line.split()
        parts_dict[k] = v

    # Return the dictionary
    return parts_dict
登入後複製

現在,我們可以將傳回的字典指派給呼叫程式碼中的變數:

my_auto_parts = autoparts()
print(my_auto_parts['engine'])  # Output: Value associated with 'engine' key
登入後複製

透過傳回字典,即使autoparts() 函數執行完畢,我們也可以存取和操作它的內容。

以上是Python 函數中的 Return 與 Print:有什麼區別?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板