I have a list that contains the rows of each column:
table = [['10 pounds', '25 pounds', '50 pounds', '100 pounds', '250 pounds', '500 pounds', '1000 pounds'],
[25, 58.75, 110, 200, 437.5, 750, 1350],
[0, 0, 0, 0, 0, 0, 0],
[50, 50, 10, 10, 5, 5, 5]]
How would I convert it to entire rows? I have spaced out the list above to show what I am trying to get better.
I want to convert it to a list containing each row for example:
['10 pounds',25,0,50]
['25 pounds',58.75,0,50]
['50 pounds',110,0,10]
['100 po...