# Tic-Tac-Toe (Python + Tkinter) A simple 2-player Tic-Tac-Toe game built with Python and Tkinter. ## Features - Two-player gameplay (X vs O) - Highlights the winning combination - Displays winner with a pop-up - Clean, responsive UI using Tkinter ## Requirements - Python 3.x Tkinter is included with standard Python installations. ## How to Run 1. Save the code to a file (e.g. `main.py`) 2. Run the script: ```bash python main.py ``` ## Gameplay - Players take turns clicking cells. - The current player is displayed. - Game ends when a player wins. - Winning cells turn green.