🎯 Hangman Game (Tkinter Edition)
A classic Hangman word-guessing game built in Python using Tkinter for the graphical interface.
🕹️ How to Play
- The program randomly chooses a word from the
wordslist.pyfile. - Guess one letter at a time using the input box.
- Each incorrect guess adds another piece to the hangman drawing.
- Win by guessing all letters before the hangman is fully drawn!
🧩 Folder Structure
hangman-game/ ├── hangman.py # Main game file ├── wordslist.py # Contains the list of words used in the game └── README.md # This file