0
Not Printing an 8x8 Text Board
why isnt it printing well? (you can make a 2d list in order to check it..) def print_board(): for row in range(8): for column in range(8): print("|" + board[row][column], end="") print("|", end="\n")
2 Respostas
+ 6
The last print is not correctly indented
0
Oh, my bad... thanks