Tic Tac Toe - Python GUI
Author: Viprakshi Gupta
This is a simple Tic Tac Toe game built using Python with a graphical user interface (GUI).The game is designed for two players, the first player to align three marks horizontally, vertically, or diagonally wins the game. If all the spaces are filled and no player has won, the game ends in a draw.
Features: Interactive GUI: Built with Python's Tkinter library for a user-friendly interface. Two-player mode: Play locally with a friend, taking turns to make moves. Win/Draw detection: Automatically checks for a win or draw after each turn.
Tech Stack: Language: Python Libraries: Tkinter (for the GUI)
How to Run: Clone the repository to your local machine. Ensure Python is installed on your system. Run the tic_tac_toe.py file: Copy code python tic_tac_toe.py Enjoy the game!
Future Enhancements: Add a single-player mode with an AI opponent. Add different difficulty levels for the AI. Implement a scoreboard to track multiple rounds.