point = (1, 2, 3) point(0:2) # (1, 2) x, y, z = point if 10 in point: ... # Swapping variables x = 10 y = 11 x, y = y, x