combining two lists into one python code example
Example 1: how to combine two lists in python
listone = [1,2,3]
listtwo = [4,5,6]
joinedlist = listone + listtwo
Example 2: how to combine 2 lists in python
l1 = [1,2,3,4]
l2 = [1,1,1,1]
l3 = [l1[x//2] if x % 2 == 0 else l2[x//2] for x in range(8)]
// l3: [1, 2, 3, 4, 5, 6, 7, 8]
Example 3: python combine two lists into matrix
np.column_stack(([1, 2, 3], [4, 5, 6]))
array([[1, 4],
[2, 5],
[3, 6]])