当前位置:脚本大全 > > 正文

python的遍历循环(对python For 循环的三种遍历方式解析)

时间:2022-04-02 10:37:16类别:脚本大全

python的遍历循环

对python For 循环的三种遍历方式解析

实例如下所示:

  • ?
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • array = ["a","b","c"]
  •  
  •  
  • for item in array:
  •   print(item)
  •  
  •  
  •  
  • for index in range(len(array)):
  •   print(str(index)+".."+array[index])
  •  
  •  
  • for index,val in enumerate(array):
  • print(str(index)+"--"+val);
  • 打印结果

  • ?
  • 1
  • a b c 0..a 1..b 2..c 0--a 1--b 2--c
  • 以上这篇对python For 循环的三种遍历方式解析就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持开心学习网。

    原文链接:https://blog.csdn.net/perfectnihil/article/details/78567210

    上一篇下一篇

    猜您喜欢

    热门推荐