Good day,
Could you please explain in what order the code executes.
variable_1 = 1
variable_2 = 2
variable_1, variable_2 = variable_2, variable_1
Why is the output 2,1 and not 2,2? Isn't variable_1 already become of value 2?
Good day,
Could you please explain in what order the code executes.
variable_1 = 1
variable_2 = 2
variable_1, variable_2 = variable_2, variable_1
Why is the output 2,1 and not 2,2? Isn't variable_1 already become of value 2?