Skip to content
Advertisement

Split list at a specific value

I am trying to write a code that splits lists in a class of lists in two when a certain value is a middle element of the list and then produce two lists where the middle element becomes the end element in the first list and the first element in the second one.

There can be more than n middle elements in the list so the result must be n+1 lists.

Example:

JavaScript

I am looking for a result that looks like this:

JavaScript

Since n = 4 and it will produce 5 lists, note that the answer has 6 lists because the last list doesn’t have any value of P in and therefore stays intact.

I haven’t been able to produce anything as I am new to python and it is hard to formulate this problem.

Any help is appreciated!

Advertisement

Answer

You can first recover all indices of the provided values and then slice accordingly.

Code

JavaScript

Example

JavaScript

Output

JavaScript

You can then apply this iteratively to you input list A to get the desired result. Alternatively you can use itertools.chain.from_iterable.

JavaScript

Output

JavaScript
Advertisement