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

How do you create a random string in Python?

I needed it to be number then character repeat till you're done this is what I created

def random_id(length):
    number = '0123456789'
    alpha = 'abcdefghijklmnopqrstuvwxyz'
    id = ''
    for i in range(0,length,2):
        id += random.choice(number)
        id += random.choice(alpha)
    return id
share|improve this question
Be more specific, give some examples of what you are looking for. – sberry Jan 8 '10 at 19:16
possible duplicate of Random strings in Python 2.6 (Is this OK?) – Mechanical snail Sep 23 '12 at 23:15

5 Answers

up vote 24 down vote accepted

Generating strings from (for example) lowercase characters:

import random, string

def randomword(length):
   return ''.join(random.choice(string.lowercase) for i in range(length))

Results:

>>> randomword(10)
'vxnxikmhdc'
>>> randomword(10)
'ytqhdohksy'
share|improve this answer
1  
Best answer so far. I'd use randomword(length, source_alpha=string.lowercase) and xrange(length), though. – Hank Gay Jan 8 '10 at 19:27
Note that although this is a very good answer, the OP has modified the question to invalidate it. And to provide his/her own answer. – Blair Conrad Jan 8 '10 at 19:47
>>> import random
>>> import string
>>> s=string.lowercase+string.digits
>>> ''.join(random.sample(s,10))
'jw72qidagk
share|improve this answer
Neat! I'm actually using this for a random password generator now! Thanks! – chandsie Apr 15 '11 at 0:45
1  
random.sample will sample unique characters from s, ie characters in the password will never repeat. This is considerably less secure than the using random.choice as in the accepted answer. – Nick Jan 20 '12 at 5:26

Since this question is fairly, uh, random, this may work for you:

>>> import uuid
>>> print uuid.uuid4()
58fe9784-f60a-42bc-aa94-eb8f1a7e5c17
share|improve this answer
In many cases, random isn't really required. Rather, all you really need is unique. – Chase Seibert Jan 8 '10 at 19:48

You can build random ascii characters like:

import random
print chr(random.randint(0,255))

And then build up a longer string like:

len = 50
print ''.join( [chr(random.randint(0,255)) for i in xrange(0,len)] )
share|improve this answer
1  
Why use string formatting? ''.join(map(chr, random.randint(0,256) for _ in xrange(len))) – Chris Lutz Jan 8 '10 at 19:22
yeah, that would be faster. editting... – Ross Rogers Jan 8 '10 at 19:24

You haven't really said much about what sort of random string you need. But in any case, you should look into the random module.

A very simple solution is pasted below.

import random

def randstring(length=10):
    valid_letters='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
    return ''.join((random.choice(valid_letters) for i in xrange(length)))

print randstring()
print randstring(20)
share|improve this answer
fyi you can omit the outermost set of parens in your return statement. – recursive Jan 8 '10 at 19:55

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.