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