I have two outputs which are lists:
Toprow = ['Value' , '+/-' , '%+/-' , 'High' , 'Low' , 'Prev' , 'Close']
Bottomrow = ['7,424.96', '+9.01', '+0.12', '7,447.00', '7,402.64', '7,415.95']
I want to output them so they look something like this:
FTSE 100 SUMMARY
Value +/- %+/- High Low Prev Close
7,424.96 +9.01 +0.12 7,447.00 7,402.64 7,415.95
I believe it would be string formatting, but I'm struggling to figure out how to make it work for this.
Any help would be appreciated.