本文實例講述了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程序設計有所幫助。