A simple Tic Tac Toe game implemented in Python. Two players can play on the same machine.
- Clone the repository:
git clone https://github.com/your-username/tic-tac-toe.git cd tic-tac-toe
- Run the game:
python tic_tac_toe.py
Players take turns entering their moves by specifying the row and column number. The game board is a 3x3 grid.
- 3x3 grid game board.
- Player 1 is X, Player 2 is O.
- First to get 3 in a row (horizontal, vertical, or diagonal) wins.
- If all 9 squares are filled without a winner, the game is a draw.
- Fork the repo and create a new branch.
- Make your changes and commit.
- Push to your branch and create a pull request.