I have something like this:
Values Time 22 0 45 1 65 2 78 0 12 1 45 2
and I want this
You need to transpose your array/matrix.
Use
list(map(list, zip(*l)))
where list is your list