Python 函數中,參數是傳值,還是傳引用?

轉自:http://python.jobbole.com/87801/ 原文出處: liuzhijun    在 C/C++ 中,傳值和傳引用是函數參數傳遞的兩種方式,在Python中參數是如何傳遞的?回答這個問題前,不如先來看兩段代碼。 代碼段1: Python def foo(arg): arg = 2 print(arg) a = 1 foo(a) # 輸出:2 print(a) # 輸出:
相關文章
相關標籤/搜索