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