TicTacToeGame

Tic Tac Toe Game

This Python script is a GUI-based implementation of the classic Tic-Tac-Toe game using the tkinter library. The game supports two players who alternate turns, with a simple interface to make moves and reset the game.

Features

Interactive Gameplay:

- Players click on grid cells to place their marker (X or O). Turn alternates between players automatically.

Winner Detection:

- Checks rows, columns, and diagonals for a winning combination. Displays a message when a player wins and disables further moves.

Reset Option:

- A "Reset Game" button clears the board and restarts the game.

User-Friendly UI:

- Visual grid and markers (X in blue and O in red). Instructions and real-time player turn display.

TicTacToeGame