I want to know what is a simplest way to write method which generates me number from 1 to 50, and then depends of generated number returns me string like:

Abcdef if generated number is 6
Abcdefghi if generated number is 9.

I'm using python 3.2

link|improve this question

3  
and if the rand number is > 26 (number of letter in the alphabets) ? – mouad May 30 '11 at 10:03
good question :) then 27 letter is a, 28 b and so on. Thanx – user278618 May 30 '11 at 10:08
feedback

1 Answer

up vote 8 down vote accepted

There's a few approaches, the simplest:

>>> import string
>>> import random
>>> string.ascii_letters[:random.randint(1, 50)].title()
'Abcdefghijklmnopq'
>>> string.ascii_letters[:random.randint(1, 50)].title()
'Abcdefghijklmnopqrstuvwxyzabcdefghijklmnopq'
>>> string.ascii_letters[:random.randint(1, 50)].title()
'Abcdefghijklmnopqrs'    

Or you can have a go with itertools:

>>> import string
>>> import random
>>> from itertools import islice, cycle
>>> def randstr():
...     return ''.join(islice(cycle(string.ascii_lowercase),
...                           random.randint(1, 50))).title()
...
>>> randstr()
'Abcdefghijklmnopq'
>>> randstr()
'Abcdefghijklmnopqrstuvwxyzabcdefghijklmnopq'
>>> randstr()
'Abcdefghijklmnopqrs'    
link|improve this answer
1  
I think you should add .title() because he want the first letter in upper case . – mouad May 30 '11 at 10:04
I have an exception: AttributeError: 'module' object has no attribute 'letters' – user278618 May 30 '11 at 10:08
1  
string.letters has been renamed to string.ascii_letters in Python 3. – codeape May 30 '11 at 10:12
I've used ascii_letters and now it works. Thanx :) – user278618 May 30 '11 at 10:12
Its actually better to use randrange and choice +1 for itertools – Jakob Bowyer May 30 '11 at 10:13
feedback

Your Answer

 
or
required, but never shown

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