好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

Python递归遍历列表及输出的实现方法

本文实例讲述了Python递归遍历列表及 输出的实现方法。分享给大家供大家参考。具体实现方法如下:

def dp(s):
  if isinstance(s,(int,str)):
    print(s)
  else:
    for item in s:
      dp(item)
l=['jack',('tom',23),'rose',(14,55,67)]
dp(l) 

运行结果如下:

jack
tom
23
rose
14
55
67

 

希望本文所述对大家的Python程序设计有所帮助。

查看更多关于Python递归遍历列表及输出的实现方法的详细内容...

  阅读:36次