I have this code below for which the output generated is 17 5 but I am unable to figure out why the value of x is 17 after the final interpretation and not 18. Please help me in understanding the logic behind this
x,y=7,2
x,y,x=x+1,y+3,x+10
print(x,y)
Output Generated is : 17 5 Why not 18 5