Given,
list_1 = [1,2,3,4] list_2 = [5,6,7,8]
What is the fastest way to achieve the following in python?
l
list_1 + list_2 does it. Example -
list_1 + list_2
>>> list_1 = [1,2,3,4] >>> list_2 = [5,6,7,8] >>> list_1 + list_2 [1, 2, 3, 4, 5, 6, 7, 8]