python中not加变量是_函数更改列表值而不是Python中的变量值
参见英文答案 > Why can a function modify some arguments as perceived by the caller, but not others?????????????????????????????????????10个我们来看一个简单的代码:y = [1,2,3]def plusOne(y):for x in range(len(y)):y[x]...