Run Program ❯
Python Home
❯
Run Code
Change Orientation
# Define two lists list1 = [10, 20, 30] list2 = [40, 50, 60] # Append list2 to list1 list1.append(list2) # Print the result print(list1)