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?
|
|
|
Answer in one line:
In details, with a clean function for further reuse:
How does it work ? We import
Then we use a generator expression to create a list of 'n' elements:
In the example above, we use Instead of asking to create 'n' times the string
Therefore
Then we just join them with an empty string so the sequence becomes a string:
|
|||||||||||||||||||||
|
e.g.
|
|||||||||||||||
|
|
Taking the answer from Ignacio, this works with python 2.6:
Example output: JQUBT2 |
|||
|
|
|
If you need a random string rather than a pseudo random one, you should use
|
|||||||||||
|
|
I thought no one had answered this yet lol! But hey, here's my own go at it:
|
|||||||
|
|
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.
...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:
...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 // |
||||
|
|
|
I'd do it this way:
|
||||
|
|