方法:先建立清單(「stus = ['孫悟空','豬八戒','蜘蛛精']」),然後透過for循環遍歷清單即可(「for i in stus:print(i )”)。
遍歷清單 : 輸出所有元素
依序遍歷清單
效果圖:
程式碼:
# 创建列表 stus = ['孙悟空','猪八戒','沙和尚','唐僧','白骨精','蜘蛛精'] # 依次遍历列表 print(stus[0]) print(stus[1]) print(stus[2]) print(stus[3])
透過while循環遍歷清單
效果圖:
程式碼:
# 创建列表 stus = ['孙悟空','猪八戒','沙和尚','唐僧','白骨精','蜘蛛精'] # 通过while循环遍历列表 i = 0 while i < len(stus): print(stus[i]) i += 1
透過for迴圈遍歷清單 最好的遍歷方法
效果圖:
程式碼:
# 创建列表 stus = ['孙悟空','猪八戒','沙和尚','唐僧','白骨精','蜘蛛精'] # 通过for循环遍历列表 for i in stus: print(i)
推薦教學:《python教學》
以上是python如何遍歷列表所有元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!