random textquote python code example

Example 1: random word generator python

#First 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()

Example 2: python random word

#easy random word generator
import random
words = ("Rock", "Paper", "scissor")
word = random.choice(words)
correct = word
print(word)