This Python script allows you to unscramble jumbled words and provides their possible meanings using NLTK and WordNet.
- Clone this repository to your local machine.
git clone https://github.com/semeer37/Unscramble_Jumbles.git
- Install the required dependencies listed in the requirements.txt file:
pip install -r requirements.txt
- Install the required dependencies (NLTK and WordNet):
pip install nltk
python -m nltk.downloader words
python -m nltk.downloader wordnet
- Run the script:
python unscramble_words.py
- Enter single or comma-separated jumbled words when prompted. For example:
Enter single or comma-separated jumbled words (or type 'q' to quit): cimt, olve, saple
- The script will provide you with possible unscrambled words for each input along with their meanings.
- Python 3.x
- NLTK library
This project is licensed under the MIT License - see the LICENSE file for details.
Feel free to contribute by opening issues or pull requests!