I have a list of lists of lists:
lst = [[[1,2,3],[3,4,5]],[1,[2,34,5,[45,67]]]]
I want to check if a value, for example 67, exists inside the list. I have already looked at the StackOverflow question:
How do I check if a list of lists exists in a list of lists?
But it only shows a method of checking if a value is in a list of lists.
How would I search a list, no matter how deep the list is?