programming-examples/python/List/Python program to append a list to the second list.py
2019-11-15 12:59:38 +01:00

4 lines
108 B
Python

list1 = [1, 2, 3, 0]
list2 = ['Red', 'Green', 'Black']
final_list = list1 + list2
print(final_list)