I've come across these variations when seeing multiple variables getting assigned at once:
x,y,z = 1,2,3
(x,y,z) = 1,2,3
x,y,z = (1,2,3)
(x,y,z) = (1,2,3)
I tested these and they all seem to assign the same values and I checked the variable types and they seem to all be ints.
So are these all truly equivalent or is there something subtle I'm missing? If they are equivalent, which is considered proper in Python?