I would like to be able to convert a string such as "1,2,5-7,10" to a python list such as [1,2,5,6,7,10]. I looked around and found this, but I was wondering if there is a clean and simple way to do this in Python.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|||
|
I was able to make a true comprehension on that question:
the other answer that pretended to have a comprehension was just a for loop because the final list was discarded. :) For python 2 you can even remove the call to |
||||
|
|
|
This might be an overkill, but I just like pyparsing:
|
|||
|
|
|
No comprehension beats mine!
The best part is that I use variable
|
|||
|
|
|
Ugh, the answers are so verbose! Here is a short and elegant answer:
Demo:
Easily modifiable to handle negative numbers or return a list. Also will need |
||||
|
|