
Brendan V. answered 05/08/19
Math, science, and programming tutor
No, this is not possible in python, a copy of objects are always passed in python. You could work around that by passing a single element list. A copy of the reference to the list will be passed, but that reference still points to the same list. It's an ugly hack though, and I'm not sure why you would want to do it, but it does work.