GNU/Linux ◆ xterm-256color ◆ bash 60 views

This project is a command-line tool that allows users to find anagrams or valid words from a given input. It provides two main functionalities:

  1. Anagram Finder: Given a word, the program generates all possible anagrams of the word and checks if they are valid words found in a dictionary.

  2. Word Finder: Given a word, the program generates all possible combinations of its characters and checks if they are valid words found in a dictionary.

The program interacts with a CSV file containing a list of words and their definitions to perform word lookup operations.

To use the tool, users need to run the project.py script with the desired command-line argument:

python project.py anagrams

or

python project.py words

The program will then prompt the user to enter a word, and it will display the results accordingly.