Possible Duplicate:
Flatten (an irregular) list of lists in Python
I have a list l = [2, 9, [1, 13], 8, 6] which I need to flatten recursively to get l = [2, 9, 1, 13, 8, 6]. I can't find a way to do so.
PS - As of writing this, I couldn't find any question matching my doubt in the Related Questions' lists. So if this is a duplicate, then kindly just point me to the old question instead of flaming me. :)