Here is my question: I have a list in python that looks like this:
list = [["a", "b", [1,2]], ["a", "C", [4,1,3]], ["e", "f", [1,7]]]
And I would like to get a sublist like this:
sublist = [[1,2], [4,1,3], [1,7]]
I would like to know if there is a quick way to make this transition,
Thank you in advance for your help :)