O_list = [[1,2],[3,4],[5,6]]

N_list = [i[o] for i in O_list for j in range(0,len(i))]

print(N_list )

#[1, 2, 3, 4, 5, 6]