explanation Merge the contents of two lists to another. code example
Example: merge two lists
# Makes list1 longer by appending the elements of list2 at the end.
list1.extend(list2)
# Makes list1 longer by appending the elements of list2 at the end.
list1.extend(list2)