Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

random word py

import random

words = ['tree','sun','ball','moon','earth','grass','world'] 

word = random.choice(words)
print(word)
 
PREVIOUS NEXT
Tagged: #random #word #py
ADD COMMENT
Topic
Name
9+7 =