Python: How do I pass a variable by reference? - Stack Overflow - 0 views
-
Parameters are passed by value
-
some data types are mutable, but others aren't
-
If you pass a mutable object into a method, the method gets a reference to that same object and you can mutate it to your heart's delight, but if you rebind the reference in the method, the outer scope will know nothing about it, and after you're done, the outer reference will still point at the original object.
- ...5 more annotations...