码迷,mamicode.com
首页 > 编程语言 > 详细

python_列表_循环遍历

时间:2018-07-04 20:08:31      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:一个   依次   class   就是   span   int   遍历   获取数据   效率   

遍历 就是 从头到尾 依次从 列表 中获取数据

  在 循环体内部 针对 每一个元素,执行相同的操作

在 python 中为了提高列表的遍历效率,专门提供的 迭代 iteration 遍历

使用 for 就能实现迭代遍历

语法格式:

1 #for 循环内部使用变量 in 列表
2 name_list = ["zhangsan","lisi","wangwu"]
3 for name in name_list:
4     # 循环内部针对列表元素进行操作
5     print(name)

 

python_列表_循环遍历

标签:一个   依次   class   就是   span   int   遍历   获取数据   效率   

原文地址:https://www.cnblogs.com/shao-null/p/9264951.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!