Answers for "choose a random word from string python"

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
0

python get random character from string

import random

#String
string = "abcdefghijklmnopqrstuvwxyz"
array = []
for c in string:
  array += [c]
 
print(array[random.randint(0, len(array)-1)])

# Faster and more efficient
random.choice(string)
Posted by: Guest on September-20-2020

Code answers related to "choose a random word from string python"

Python Answers by Framework

Browse Popular Code Answers by Language