generate random characters python code example
Example 1: random letter generator python
import random
import string
random.choice(string.ascii_letters)
Example 2: generate random string python
import string
import random
length=5
randomstr = ''.join(random.sample(string.ascii_letters+string.digits,length))
randomstr = ''.join(random.choices(string.ascii_letters+string.digits,k=length))
Example 3: python get random character from string
import random
string = "abcdefghijklmnopqrstuvwxyz"
array = []
for c in string:
array += [c]
print(array[random.randint(0, len(array)-1)])
random.choice(string)