ppp.py 102 B

123456
  1. def prrr(tlist):
  2. for each in tlist:
  3. if isinstance(each,list):
  4. prrr(each)
  5. else:
  6. print(each)