I have a list containing the numbers 25-1. I'm trying to print it out like a gameboard, where all the numbers match up:
I found out how to add the lines to the list by doing this:
_b = map(str, board)
_board = ' | '.join(_b)
and I know how to print 5 numbers on each line.. but I'm having trouble getting all the numbers to line up. Is there a way to do this?