Write a Python program to append a list to the second list.
Topic: Write a Python program to append a list to the second list.
Solution
list1 = [1, 2, 3, 0] list2 = ['Red', 'Green', 'Black'] final_list = list1 + list2 print(final_list)
List all Python Programs