0
What is Tic-Tac-Toe and how can I make this with python?
2 Answers
+ 3
tic-tac-toe is a game, you need to know the game before you can build it, read about it on Google
+ 1
Tic-Tac-Toe is a simple game for 2 players.
It has a 3Ă3 grid.
One player starts the game by drawing an â on any slot in the grid.
Then is opponent's turn to draw a â in any slot in the grid (except the slot that already has an â on it).
Then is again the first player's turn, who will again put an â in any slot in the grid (except the grid that already has an â or a â on it).
This will continue until the grid is either full or until one of the players has already won the game.
You can win the game by getting 3 of your marks in the same row as upwards, sidewards or diagonal, before your opponent does it.