4 lines
108 B
Python
4 lines
108 B
Python
|
list1 = [1, 2, 3, 0]
|
||
|
list2 = ['Red', 'Green', 'Black']
|
||
|
final_list = list1 + list2
|
||
|
print(final_list)
|