1

I am trying to extract data from a nested list (in python) in the exact order. For example:

lst=[1,[10,20,[100,200,300,400,500],40,50,60,70,80,90],3,4,5,6,7,8,9]

should throw:

1
10
20
100
200
300
400
500
40
50
60
70
80
90
3
4
5
6
7
8
9

Can anyone help me with this problem?

Mazdak
  • 105,000
  • 18
  • 159
  • 188
raman
  • 93
  • 2
  • 8

0 Answers0