I need to generate random text strings of a particular format. Would like some ideas so that I can code it up in Python. The format is <8 digit number><15 character string>.
|
3
|
|
|
|
|
|
EDIT: liked the idea of using random.choice better than randint() so I've updated the code to reflect that. Note: this assumes lowercase and uppercase characters are desired. If lowercase only then change the second list comprehension to read:
Obviously for uppercase only you can just flip that around so the slice is [26:] instead of the other way around. |
||||
|
|
|
See an example - Recipe 59873: Random Password Generation . Building on the recipe, here is a solution to your question :
|
||
|
|
