I have a sequence of numbers in a list and I'm looking for an elegant solution, preferably list comprehension, to get the individual sequences (including single values). I have solved this small problem but it is not very pythonic.
The following list defines an input sequence:
input = [1, 2, 3, 4, 8, 10, 11, 12, 17]
The desired output should be:
output = [
  [1, 2, 3, 4],
  [8],
  [10, 11, 12],
  [17],
]
 
     
    