Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to generate a string of size N.

It should be made up of numbers and uppercase English letters such as:

  • 6U1S75
  • 4Z4UKK
  • U911K4

How can I achieve this in a Pythonic way?

share|improve this question

7 Answers

up vote 395 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 work ?

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

string.ascii_uppercase + string.digits just concatenates 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 generates 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 a sequence of characters:

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

Therefore random.choice(chars) for x in range(size) really is creating a sequence 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 sequence 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'
share|improve this answer
1  
seems like the best way, always Ignacio as the champion :) – Hellnar Feb 13 '10 at 12:50
71  
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
4  
@jorelli: It's not a list comprehension; it's a generator expression. – Ignacio Vazquez-Abrams Jun 9 '11 at 20:34
8  
@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 15 more comments
  1. Better way is to use random.sample.
  2. If n-repetition is allowed in your case, enlarge your random basis by n times.
  3. 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,6))
share|improve this answer
5  
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
3  
One of the examples has a repeat, so I doubt he is looking to disallow repeats. – Mark Byers Feb 13 '10 at 14:34
''.join(random.sample(char_set*6,6)) solves the problem. – Shih-Wen Su Mar 14 at 20:14
@Shih-WenSu thanks, now that makes this the correct and better answer :) – Anurag Uniyal Mar 14 at 21:57

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

share|improve this answer

If you need a random string rather than a pseudo random one, you should use os.urandom as the source

from os import urandom
from itertools import islice, imap, repeat
import string

def rand_string(length=5):
    chars = set(string.ascii_uppercase + string.digits)
    char_gen = (c for c in imap(urandom, repeat(1)) if c in chars)
    return ''.join(islice(char_gen, None, length))
share|improve this answer
How is os.urandom not pseudo random? It might be using a better algorithm to generate numbers that are more random, but it is still pseudo random. – Tyilo Dec 9 '12 at 15:00
@Tyilo, see here docs.python.org/2/library/os.html#os.urandom – gnibbler Dec 9 '12 at 19:02
@Tyilo, I am aware of the difference between /dev/random and /dev/urandom. The problem is that /dev/random blocks when there is not enough entropy which limits it's usefulness. For a one time pad /dev/urandom isn't good enough, but I think it's better than pseudo random here. – gnibbler Dec 9 '12 at 21:20
I would say that both /dev/random and /dev/urandom is pseudo random, but it might depend on your definition. – Tyilo Dec 9 '12 at 21:27

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))],"")
share|improve this answer
I won't vote this down, but I think it's far too complicated for such a simple task. The return expression is a monster. Simple is better than complex. – Carl Smith Dec 28 '12 at 23:14
2  
@CarlSmith, true my solution seems a bit overkill for the task, but I was aware of the other simpler solutions, and just wished to find an alternative route to a good answer. Without freedom, creativity is in danger, thus I went ahead and posted it. – nemesisfixx Dec 29 '12 at 4:40

This method is slightly faster, and slightly more annoying, than the random.choice() method Ignacio posted.

It takes advantage of the nature of pseudo-random algorithms, and banks on bitwise and and shift being faster than generating a new random number for each character.

# must be length 32 -- 5 bits -- the question didn't specify using the full set
# of uppercase letters ;)
_ALPHABET = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789'

def generate_with_randbits(size=32):
    def chop(x):
        while x:
            yield x & 31
            x = x >> 5
    return  ''.join(_ALPHABET[x] for x in chop(random.getrandbits(size * 5))).ljust(size, 'A')

...create a generator that takes out 5 bit numbers at a time 0..31 until none left

...join() the results of the generator on a random number with the right bits

With Timeit, for 32-character strings, the timing was:

[('generate_with_random_choice', 28.92901611328125),
 ('generate_with_randbits', 20.0293550491333)]

...but for 64 character strings, randbits loses out ;)

I would probably never use this approach in production code unless I really disliked my co-workers.

edit: updated to suit the question (uppercase and digits only), and use bitwise operators & and >> instead of % and //

share|improve this answer

I'd do it this way:

import random, string

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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