This is a simple Tic Tac Toe game implemented in Python using the Tkinter library for the GUI. The game allows two players to take turns and play the classic Tic Tac Toe game.Tkinter provides a robust and easy-to-use framework for creating graphical user interfaces.
- Two-player gameplay (Player X and Player O).
- Graphical user interface using Tkinter.
- Automatic detection of game winner or tie.
- Game reset functionality after a win or tie.
Python 3.x
Run the script using Python: python tictac.py
- The game starts with Player X.
- Click on an empty cell to mark it with your symbol (X or O).
- The game will automatically switch to the other player after each move.
- The game will check for a winner or a tie after each move.
- A message box will appear to announce the winner or declare a tie.
- The game board will reset automatically after a win or a tie.