I have a list of columns that I am trying to show as multiple columns:
Given below is the list:
for name in file:
    worksheet.write(row, col, name)
    col += 1
Given below is the output created:
['apples','oranges','bananas','pears']
I am trying to transpose it and have it displayed as below :
apples
oranges
bananas
pears
Could anyone advice how could I get my list transposed. Thanks