1、前言
在我们编写脚本过程中,经常会进行遍历列表里每一个元素,并对指定的元素进行操作,最常见的就是使用for循环进行遍历,本篇将总结除了使用for循环,还有其他的循环遍历方法。
2、使用for循环简单结构遍历
示例代码:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 公众号:AllTests软件测试
list1 = [15, 102, 23, "循环", 45, "AllTests软件测试"]
for i in list1:
print(i)
运行结果:
3、使用enumerate()函数遍历
示例代码:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 公众号:AllTests软件测试
list1 = [15, 102, 23, "循环", 45, "AllTests软件测试"]
for i, n in enumerate(list1):
print(i, n)
运行结果:
4、使用iter()函数遍历
示例代码:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 公众号:AllTests软件测试
list1 = [15, 102, 23, "循环", 45, "AllTests软件测试"]
for i in iter(list1):
print(i)
运行结果:
5、使用range()函数遍历
示例代码:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 公众号:AllTests软件测试
list1 = [15, 102, 23, "循环", 45, "AllTests软件测试"]
for i in range(len(list1)):
print(i, list1[i])
运行结果:
6、使用while循环遍历
示例代码:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 公众号:AllTests软件测试
list1 = [15, 102, 23, "循环", 45, "AllTests软件测试"]
i = 0
while i < len(list1):
print(list1[i])
i += 1
运行结果:
7、使用递归遍历
示例代码:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 公众号:AllTests软件测试
list1 = [15, 102, 23, "循环", 45, "AllTests软件测试"]
def demo(list, i):
if i == len(list):
return
else:
print(list[i])
demo(list1, i+1)
demo(list1, 0)
运行结果:
最后: 下方这份完整的软件测试视频学习教程已经整理上传完成,朋友们如果需要可以自行免费领取【保证100%免费】
这些资料,对于【软件测试】的朋友来说应该是最全面最完整的备战仓库,这个仓库也陪伴上万个测试工程师们走过最艰难的路程,希望也能帮助到你!
文章来源:https://www.toymoban.com/news/detail-516052.html
文章来源地址https://www.toymoban.com/news/detail-516052.html
到了这里,关于Python中的循环遍历列表的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!