I want to generate string with N size.

It should be made up of numbers and upper case english letters such as:

  • 6U1S75
  • 4Z4UKK
  • U911K4

How can I achieve this in a pythonic way ?

Thanks

link|improve this question

feedback

5 Answers

up vote 146 down vote accepted

Answer in one line:

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

In details, with a clean function for further reuse:

>>> import string
>>> import random
>>> def id_generator(size=6, chars=string.ascii_uppercase + string.digits):
...    return ''.join(random.choice(chars) for x in range(size))
...
>>> id_generator()
'G5G74W'
>>> id_generator(3, "6793YUIO")
'Y3U'

How does it works ?

We import string, a module that contains sequence of common ASCII characters, and random, a module that deals with random generation.

string.ascii_uppercase + string.digits just concantenate the list of characters representing uppercase ASCII chars and digits:

>>> string.ascii_uppercase
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
>>> string.digits
'0123456789'
>>> string.ascii_uppercase + string.digits
'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'

Then we use a generator expression to create a list of n elements:

>>> range(4) # range create a list of 'n' numbers
[0, 1, 2, 3]
>>> ['elem' for x in range(4)] # we use range to create 4 times 'elem'
['elem', 'elem', 'elem', 'elem']

In the example above, we use [ to create the list, but we don't in the id_generator function so Python doesn't create the list in memory but generate the elements on the fly, one by one (more about this here).

Instead of asking to create 'n' times the string elem, we will ask Python to create 'n' times a random character, picked from sequence of characters:

>>> random.choice("abcde")
'a'
>>> random.choice("abcde")
'd'
>>> random.choice("abcde")
'b'

Therefor random.choice(chars) for x in range(size) really is creating a squence of size characters. Characters that are randomly picked from chars:

>>> [random.choice('abcde') for x in range(3)]
['a', 'b', 'b']
>>> [random.choice('abcde') for x in range(3)]
['e', 'b', 'e']
>>> [random.choice('abcde') for x in range(3)]
['d', 'a', 'c']

Then we just join them with an empty string so the squence becomes a string:

>>> ''.join(['a', 'b', 'b'])
'abb'
>>> [random.choice('abcde') for x in range(3)]
['d', 'c', 'b']
>>> ''.join(random.choice('abcde') for x in range(3))
'dac'
link|improve this answer
exactly how i would have done it :) – Matt Joiner Feb 13 '10 at 12:40
22  
I don't know a lick of python, but holy cow, does this make me want to learn it. – abeger Mar 10 '10 at 16:25
2  
How does this work??? I am new to python and love it's extreme high level-ness but this just blew my mind. Is there anywhere where I can read documentation on this? – Youarefunny Jan 28 '11 at 1:25
1  
@jorelli: It's not a list comprehension; it's a generator expression. – Ignacio Vazquez-Abrams Jun 9 '11 at 20:34
6  
@Youarefunny: I edited the answer so you'll have a detail explanation of how this stuff works. – e-satis Nov 2 '11 at 14:53
show 9 more comments
feedback
  1. Better way is to use random.sample(if you are ok with no repetition, which could be good)
  2. Do not add lists in every iteration

e.g.

import random
import string

char_set = string.ascii_uppercase + string.digits
print ''.join(random.sample(char_set,6))
link|improve this answer
4  
This way isn't bad but it's not quite as random as selecting each character separately, as with sample you'll never get the same character listed twice. Also of course it'll fail for N higher than 36. – bobince Feb 13 '10 at 12:54
for the given use case(if no repeat is ok) i will say it is still the best solution. – Anurag Uniyal Feb 13 '10 at 14:30
1  
One of the examples has a repeat, so I doubt he is looking to disallow repeats. – Mark Byers Feb 13 '10 at 14:34
feedback

Taking the answer from Ignacio, this works with python 2.6:

import random
import string

N=6
print ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(N))

Example output: JQUBT2

link|improve this answer
feedback

I thought no one had answered this yet lol! But hey, here's my own go at it:

import random

def random_alphanumeric(limit):
    #ascii alphabet of all alphanumerals
    r = (range(48,58) + range(65,91) + range(97,123))
    random.shuffle(r)
    return reduce(lambda i,s: i + chr(s),r[:random.randint(0,len(r))],"")
link|improve this answer
feedback

I'd do it this way:

import random, string

def rand_string(length=5, chr_set=string.ascii_uppercase + string.digits):
    output = ''
    for n in range(length):
        output += random.choice(chr_set)
    return output
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.