For my study I need to create a binary puzzle in Python like this:
First I need to make a game board for it, as in the image. I'm trying to create a 6 by 6 board. The player must be able to enter a 1
or 0
.
How do I create the board so that the player will be able to enter the coordinate as in the picture?
After some research I found this way to create a board:
col = 6
row = 6
board = []
for i in range(6):
board.append(["0"]*col)
print(board)
The problem here is that the list is coming up like:
[[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], ...]
How can I change the code so that it will come under each other?
And how can I add those A
, B
, C
/ 1
, 2
, 3
on the x
/y
axes?
Something simple to give you some idea:
Needs a bit of work, but I'm sure it's enough to get started.