Ok i know its kinda weird question but... For example in javascript we could write a program like this:
var a = 1;
testFunction(++a, ++a, a);
function testFunction(x, y, z){
document.writeln("<br />x = " + x);
document.writeln("<br />y = " + y);
document.writeln("<br />z = " + z);
}
and we would get an output:
x = 2
y = 3
z = 3
This implies that parameters are trully evaluated from left to right in javascript. In C we would get output
x = 3
y = 3
z = 3
I was wondering if we could do the same in python or is it impossible since its a pass by value reference language? I ve made a simple program but i dont think that proves anything:
x=2
def f(x,y,z):
print(x,y,z)
f(x*2,x*2,x**2)
print(x)
4 4 4
2
Python wont let me do any new assignment within the function parameter when i call it (for example f(x=4,x,x) or something like this).
I need that for a some kind of "exercise" although its more for personal clarification. I also have a doubt if the title of this question is the right one but I couldnt think a better one. Thanks in advance.
EDIT:: Ok i ve accepted larsmans answer cause its simple and juicy but for more in depth answer you can check Anuj Gupta as well. Thanks again.