Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
Source by pynative.com #
 
PREVIOUS NEXT
Tagged: #python #random #character #string
ADD COMMENT
Topic
Name
4+4 =