通过本文主要向大家介绍了python遍历列表,python list遍历,python dict遍历,python 遍历字典,python json 遍历等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
本文实例讲述了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)
</div>
运行结果如下:
jack tom 23 rose 14 55 67</div>
希望本文所述对大家的Python程序设计有所帮助。
</div>
