Run
# Take two lists list1 = [6, 52, 74, 62] list2 = [85, 17, 81, 92] # Append each item of list2 to list1 for item in list2: list1.append(item) # Print the first list print(list1)
Output