t = (1, 2, 3, 4) a, b, c = t
t = (1, 2, 3, 4) a, b, *c = t
Used when there is an unbalanced tuple unpacking in assignment.