登录
首页精彩阅读Python递归遍历列表及输出的实现方法
Python递归遍历列表及输出的实现方法
2017-12-06
收藏

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程序设计有所帮助。

数据分析咨询请扫描二维码

客服在线
立即咨询