This is a command line interface game based on Wordle. Rather than 5 letters, it uses 6.

To play, download the repository at the link below and open it in the command line. Execute it with “python Game.py”. It will prompt you to enter 6-letter words. Red letters are represented by {}, yellow by (), and green by [].

Example - If the Wor6le is “spends” and you enter “snakes”:
Output: [s] {n} {a} {k} (e) [s]
Red Letters:
{n} {a} {k}

Yellow Letters:
(e)

Green Letters:
[s] [s]
because “s” is in the correct position, and “e” is in the target word, but not in the correct position; “n”, “a”, and “k” are not in the target word.


View Repo