Run
# Take two lists list1 = [6, 52, 74, 62] list2 = [85, 17, 81, 92] # Extend first list with the second one list1.extend(list2) # Print the first list print(list1)
Output