How to convert a list like this :
[[1,[2,["s",2],3]],[1,2,3,4,5,6],532, "Potato", [23, [[[1,[4,[2,[]],[0],[0], [0]]], 234, 1222], "22More"]]]
to
[1, 2, 's', 2, 3, 1, 2, 3, 4, 5, 6, 532, 'Potato', 23, 1, 4, 2, 0, 0, 0, 234, 1222, '22More']
I have tried using a for loop and then unpacking them using that but it didn't work out. Now I thought I could make variables of the element in the master list and then try unpacking them but it is not happing the way I want
Please do help