Run
# Take two lists list1 = [6, 52, 74, 62] list2 = [85, 17, 81, 92] # Make of copy of list1 result = list1.copy() # Append the second list to first list result.extend(list2) # Print the first list print(result)
Output