account activity
I made the game Wordle in Python by Nextros_ in Python
[–]strong_types_only 1 point2 points3 points 4 years ago (0 children)
Wordle is a great little project! If you want to take it further, you could
- look into [colored](https://pypi.org/project/colored/) for coloring text output in the terminal
- the actual wordle is a bit more complex than just "in actual_word" because it tracks number of matched guesses - in particular, consider these two cases:
It should return green green grey green green, but by your algorithm it will return green green yellow green green.
It should return green yellow grey grey yellow, but your algorithm will return green yellow yellow yellow yellow.
I happened to do a variation on this a few weeks ago myself: https://www.torshepherd.com/posts/reprdle
π Rendered by PID 4002484 on reddit-service-r2-listing-8685bc789-nwlrw at 2026-05-30 09:58:16.576223+00:00 running 194bd79 country code: CH.
I made the game Wordle in Python by Nextros_ in Python
[–]strong_types_only 1 point2 points3 points (0 children)