This respositary contains a simple game TIC-TAC-TOE game implemented using Python3 in Jupyter Notebook.Tic-Tac-Toe is a classic two player game where players take turns each marking in the spaces in a 3x3 grid board.The goal is to place three of your markings in a horizontal or vertical or diagonal row before your opponent.
- Two player functionality.
- Dynamic board updates after each move.
- Easy to read the code.
*To run the game, you will need:
*Python 3.x installed on your machine.
*Jupyter notebook(Available with Anaconda installer)
*Libraries(if used)
*The game is played between two players.
*Each player will choose their markings 'X' or 'O'.
*First chance will be given to a player using random technique.
*Each player will take turns entering the positions where they want to the markings.
*The positions are like
1 2 3
4 5 6
7 8 9 .
*The game ends when one player wins or when the grid is completely filled(draw).