Home >Backend Development >Python Tutorial >Python递归遍历列表及输出的实现方法

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

WBOY
WBOYOriginal
2016-06-06 11:16:471544browse

本文实例讲述了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程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn