random uppercase letter python code example
Example: 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)