>>> first, second, third = [1, 2, 3] >>> first 1 >>> second 2 >>> third 3 >>> first, second, third = 'abc' >>> first 'a' >>> second 'b' >>> third 'c'