Currently, my python script tabulates this 2D array:
[['Aquania', 'Castle Of Time', 'Colour Circuit', 'Comet Starway'], ['Crystal Dungeon', 'Ds Bowser Castle', 'Desert Fort', 'Dragon Burial Grounds'], ['Dreamworld Cloudway', 'Forest Creek', 'Gba Bowser Castle 2', 'Heart Of China'], ['Infernal Pipeyard', 'Jiyuu Village', 'Lunar Lights', 'Mushroom Valley'], ['Sahara Hideout', 'White Garden', 'White Garden', 'White Garden']]
And it outputs it like this:
Cup 1 Cup 2 Cup 3 Cup 4
------------------- ---------------- ------------------- ---------------------
Aquania Castle Of Time Colour Circuit Comet Starway
Crystal Dungeon Ds Bowser Castle Desert Fort Dragon Burial Grounds
Dreamworld Cloudway Forest Creek Gba Bowser Castle 2 Heart Of China
Infernal Pipeyard Jiyuu Village Lunar Lights Mushroom Valley
Sahara Hideout White Garden White Garden White Garden
However, I would like it to print with the first array in the 2d array going vertically so:
Cup 1
-------------------
Aquania
Castle Of Time
Colour Circuit
Comet Starway
and so on for all the other columns Is there a way to do this with tabulate?