random key generator python code example
Example 1: 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 2: python generate random string
''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(N))
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)