If I have a tuple such as (1,2,3,4) and I want to assign 1 and 3 to variables a and b I could obviously say
(1,2,3,4)
myTuple = (1,2,3) a = my_tuple[0] b = my