Answers for "python choose random word"

5

python random word

#easy random word generator
import random
words = ("Rock", "Paper", "scissor")
word = random.choice(words)
correct = word
print(word)
Posted by: Guest on February-10-2021

Python Answers by Framework

Browse Popular Code Answers by Language