This is a simple implementation of the classic Tic Tac Toe game written in Python.
Tic Tac Toe is a two-player game where each player takes turns marking a space in a 3x3 grid with their respective symbol (X or O). The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row wins the game.
- Command-line interface
- Two-player mode
- Input validation
- Game state display
- Python 3.x
- Clone the repository:
git clone https://github.com/your-username/tic-tac-toe.git
- Navigate to the project directory:
cd tic-tac-toe
Run the game by executing the following command:
python tic_tac_toe.py