赞
踩
在我们编写脚本过程中,经常会进行遍历列表里每一个元素,并对指定的元素进行操作,最常见的就是使用for循环进行遍历,本篇将总结除了使用for循环,还有其他的循环遍历方法。
示例代码:
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
-
- list1 = [15, 102, 23, "循环", 45, "AllTests软件测试"]
- for i in list1:
- print(i)
运行结果:
示例代码:
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
-
- list1 = [15, 102, 23, "循环", 45, "AllTests软件测试"]
- for i, n in enumerate(list1):
- print(i, n)
示例代码:
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
-
- list1 = [15, 102, 23, "循环", 45, "AllTests软件测试"]
- for i in iter(list1):
- print(i)
运行结果
示例代码:
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
-
- 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 -*-
-
- list1 = [15, 102, 23, "循环", 45, "AllTests软件测试"]
- i = 0
- while i < len(list1):
- print(list1[i])
- i += 1
运行结果:
示例代码:
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
-
- 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)
运行结果:
最后想学习自动化测试的伙伴可以看看这套视频喔,内容齐全,结合项目实战,还有笔记
B站讲的最详细的Python接口自动化测试实战教程全集(实战最新版)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。