Source Code:
(back to article)
list1 = [1, 2, 3] list2 = [4, 5, 6] list3 = [x for x in list1 + list2]
Result:
Report an issue