programming-examples/python/List/Python program to append a list to the second list.py

4 lines
108 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
list1 = [1, 2, 3, 0]
list2 = ['Red', 'Green', 'Black']
final_list = list1 + list2
print(final_list)