一些答案在函数调用的上下文中包含单词“ copy”。我感到困惑。
Python不复制对象的函数调用中传递过。
功能参数是名称。调用函数时,Python会将这些参数绑定到您传递的任何对象上(通过调用方作用域中的名称)。
对象可以是可变的(如列表)或不可变的(如Python中的整数,字符串)。您可以更改可变对象。您不能更改名称,只需将其绑定到另一个对象即可。
您的示例与作用域或名称空间无关,而与Python中对象的命名,绑定和可变性有关。
def f(n, x): # these `n`, `x` have nothing to do with `n` and `x` from main() n = 2 # put `n` label on `2` balloon x.append(4) # call `append` method of whatever object `x` is referring to. print('In f():', n, x) x = [] # put `x` label on `[]` ballon # x = [] has no effect on the original list that is passed into the function
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)