Re: generate random digits with length of 5

2008-09-29 Thread sotirac
On Sep 28, 5:22 pm, "Aaron \"Castironpi\" Brady" <[EMAIL PROTECTED]> wrote: > On Sep 28, 4:08 pm, Michael Ströder <[EMAIL PROTECTED]> wrote: > > > > > Gary M. Josack wrote: > > > Aaron "Castironpi" Brady wrote: > > >&

generate random digits with length of 5

2008-09-28 Thread sotirac
Wondering if there is a better way to generate string of numbers with a length of 5 which also can have a 0 in the front of the number. random_number = random.sample([0,1,2,3,4,5,6,7,8,9], 5) # choose 5 elements code = 'this is a string' + str(random_number[0]) + str(random_number[1]) + str(ra