how to make python pick a random word code example
Example: python random word
#easy random word generator
import random
words = ("Rock", "Paper", "scissor")
word = random.choice(words)
correct = word
print(word)
#easy random word generator
import random
words = ("Rock", "Paper", "scissor")
word = random.choice(words)
correct = word
print(word)