I need to make a list of lists out of 4 lists I have. However, I want each list to become a column instead of a row in the final list of lists.
Each of my lists is 10 items long, so I have made a an empty list of lists filled with 0s which is 4 by 10.
rows, columns = (10, 4)
biglist = [[0 for i in range(columns)] for j in range(rows)]
I now want to know how to fill the empty list of lists with my individual lists.
Or, would it be better to make 10 new lists by reading each place from each of the four lists one at a time, and then use these new lists to fill in the empty list of lists?