Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

random word python

import random

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

word = random.choice(words)
print(word)
 
PREVIOUS NEXT
Tagged: #random #word #python
ADD COMMENT
Topic
Name
1+6 =