So i\'m basically working on a project where the computer takes a word from a list of words and jumbles it up for the user. there\'s only one problem: I don\'t want to keep
There is a package random_word could implement this request very conveniently:
$ pip install random-word
from random_word import RandomWords
r = RandomWords()
# Return a single random word
r.get_random_word()
# Return list of Random words
r.get_random_words()
# Return Word of the day
r.word_of_the_day()