This is a simple implementation of the classic Tic-Tac-Toe game in Python.
- Run the
game.py
file. - You will be prompted to choose the size of the board (standard is 3x3).
- Players will take turns entering their moves by inputting the row and column numbers.
- The game will continue until one player wins or the board is full (resulting in a draw).
- Enjoy playing!
game.py
: Main Python script containing the game logic.README.md
: This file providing instructions and information about the game.
- Python 3
- The game allows for customization of the board size, so you can play larger versions of Tic-Tac-Toe if desired.
- This implementation does not include an AI opponent, so it's a two-player game.