Python中的循环遍历列表

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)

运行结果:

Python中的循环遍历列表_第1张图片

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)

运行结果:

Python中的循环遍历列表_第2张图片

4、使用iter()函数遍历

示例代码:

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# 公众号:AllTests软件测试

list1 = [15, 102, 23, "循环", 45, "AllTests软件测试"]
for i in iter(list1):
    print(i)

运行结果:

Python中的循环遍历列表_第3张图片

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])

运行结果:

Python中的循环遍历列表_第4张图片

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

运行结果:

Python中的循环遍历列表_第5张图片

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)

运行结果:

Python中的循环遍历列表_第6张图片

最后: 下方这份完整的软件测试视频学习教程已经整理上传完成,朋友们如果需要可以自行免费领取【保证100%免费】

在这里插入图片描述

这些资料,对于【软件测试】的朋友来说应该是最全面最完整的备战仓库,这个仓库也陪伴上万个测试工程师们走过最艰难的路程,希望也能帮助到你!

 

你可能感兴趣的:(职场经验,软件测试,软件测试工程师,单元测试,职场和发展,自动化测试,软件测试,程序人生)