17. Unpacking iterables

17.1. Unpacking to merge tuples

Tuple unpacking below can be used to merge tuples.
tuple1 = ("a", "b", "c")
tuple2 = (3, 2, 1)
merged_tuple = (*tuple1, *tuple2)
print(merged_tuple)
The ouput is: (‘a’, ‘b’, ‘c’, 3, 2, 1)

17.2. Unpacking to merge lists

List unpacking below can be used to merge lists.
list1 = ["a", "b", "c"]
list2 = [3, 2, 1]
merged_list = [*list1, *list2]
print(merged_list)
The ouput is: [‘a’, ‘b’, ‘c’, 3, 2, 1]