Python "\n" tag extra line
I am trying to build a simple board in command line.
Problem:
When i use "\n" for ending current line, it adds an extra blank line. How can i fix that?
Code:
def drawBoard():
board = [ [0,0,0,0,0,0,0,0,0],
[0,0,0,0,0,0,0,0,0],
...