random number and letter generator python code example

Example 1: random letter generator python

import random
import string
random.choice(string.ascii_letters)

Example 2: python generate random string

''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(N))

Example 3: random string generate python of 2.7

>>> import string
>>> import random
>>> def id_generator(size=6, chars=string.ascii_uppercase + string.digits):
    return ''.join(random.choice(chars) for _ in range(size))