Despite the insane number of list questions on this website, I still haven't been able to get this right.
First element in the list is another list. Trying to break that out and then populate it vertically.
have = [[['v', 'e', 'r', 't'], 'A', 'B', 'C', 'D'],
[['v', 'e', 'r', 't'], 'E', 'F', 'G', 'H']]
want = [['v', 'A', 'B', 'C', 'D'],
['e', 'A', 'B', 'C', 'D'],
['r', 'A', 'B', 'C', 'D'],
['t', 'A', 'B', 'C', 'D'],
['v', 'E', 'F', 'G', 'H'],
['e', 'E', 'F', 'G', 'H'],
['r', 'E', 'F', 'G', 'H'],
['t', 'E', 'F', 'G', 'H']]