返回與列印函數輸出
在 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中文網其他相關文章!