I'm using python 3 and i work with PyMongo.
PyMongo allow me to iterate over collections from database like this :
List['tomato',['apple',['carpet','dishwasher','mister T',[... etc.. etc..]],'coke'],'pie']
i'm currently using for loop with a maximum of 4 levels. And that's very hard to maintain and understand.
So i want to iterate recursively in all nested array from first array to the last nested array.
Thank you :)
Jude