Tic-Tac-Toe Game
A simple implementation of the classic Tic-Tac-Toe game, designed for two players. This project demonstrates basic game logic, interactivity, and programming concepts in Python.
Features
- Two-Player Gameplay: Players take turns placing their marks (X or O) on a 3x3 grid.
- Winner Detection: Automatically checks for a win, loss, or draw after every move.
- Replay Option: Players can restart the game after a result is declared.
How to Play
- Game Rules:
- The game is played on a 3x3 grid.
- Players take turns to place their marker (X or O) in an empty spot.
- The first player to align three markers (horizontally, vertically, or diagonally) wins.
- If all spots are filled without a winner, the game ends in a draw.
- Input:
- Players are prompted to enter the row and column number where they want to place their mark.
Setup and Installation
- Clone this repository:
```bash
git clone https://github.com/yourusername/tic-tac-toe.git