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 having to write tons of words in the list, so i’m wondering if there’s a way to import a ton of random words so even I
Tag: word-list
Picking a Random Word from a list in python?
In Python 3, how would I print a random word from a list of words? Answer Use the random.choice() function: