I want to generate string with N size.
It should be made up of numbers and upper case english letters such as:
- 6U1S75
- 4Z4UKK
- U911K4
How can I achieve this in a pythonic way ?
Thanks
|
feedback
|
|
Answer in one line:
In details, with a clean function for further reuse:
How does it works ? 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
Therefor
Then we just join them with an empty string so the squence becomes a string:
| |||||||||||||||||||
feedback
|
e.g.
| |||||||||||
feedback
|
|
Taking the answer from Ignacio, this works with python 2.6:
Example output: JQUBT2 | |||
|
feedback
|
|
I thought no one had answered this yet lol! But hey, here's my own go at it:
| |||
|
feedback
|
|
I'd do it this way:
| ||||
|
feedback
|