# πΉοΈ Tic-Tac-Toe with AI & GUI
A beginner-friendly Python Tic-Tac-Toe game with a graphical interface using `tkinter`.
Play against a friend .
## π― Features
- π’ 3x3 grid with clickable buttons
- π₯ 2-player local mode
- β»οΈ Auto reset after win/tie
- π‘ Easy to extend for more advanced logic or styling
## π How to Run
1. Make sure you have **Python 3.6+** installed.
2. Save the script as `tic_tac_toe_gui_ai.py`.
3. Run the script:
python tic_tac_toe_gui_ai.py
- Click on the grid to play. Game auto-restarts after a result.
tic_tac_toe_gui_ai.py # Main game script
README.md # This file
- Add unbeatable minimax AI
- Add score tracking
- Add dark mode UI
- Add sound effects on moves/win
- Export it as
.exe
for easy sharing
This is a great project for:
- Students starting with Python and GUI development
- Learning basics of game logic
- Understanding how to combine UI and AI
Built with β€οΈ using Python + Tkinter