0
Is there any library in Python that contains all the English words?
4 Réponses
+ 5
https://pypi.org/project/english-words/
I saw this in PyPi website.
Or you can just search all English words in Google then create your own module/file that stores all those words on your file (.txt or .py) then import it.
+ 3
probably, but you could search up wordlists and save the text to a file (one word per line). you can then create a list of words, in code, from reading the file and use your preferred search/sift method to go through the list
+ 1
Thanks!