value = 1,2,3 Assign the tuple(1,2,3) to the variable value;
x,y,z = value Assigns the values in the tuple(1,2,3) to the variables x,y,z, respectively;
print(x,y,z) print 1, 2, 3;
type(x) Outputs an int, indicating that x is an integer.