Python formatting for table
Advertisements I am trying to print something to look like this 0 1 2 3 ———— 0|A A A A 1|A A A A 2|A A A A 3|A A A A and this is my code for it: def pretty_print (board): for i in range(-2,len(board)): if (i==-2): print (" ",end= "") for k in… Read More Python formatting for table