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

时间:2022-09-26 09:21:15

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

?
1
2
3
4
5
6
7
8
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)

运行结果如下:

?
1
2
3
4
5
6
7
jack
tom
23
rose
14
55
67

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