导语:
本文主要介绍了关于基础学习:python遍历循环方法有哪些?怎么用?的相关知识,包括python如何遍历,以及Python如何遍历这些编程知识,希望对大家有参考作用。
代码是一个非常灵活的东西。很多代码看起来不一致,但表达的意思基本一致。这和我们接下来要学习的各种循环遍历方法是一样的。一起来看看吧~
Python中遍历列表有以下几种方法:
一、for循环遍历
lists = ["m1", 1900, "m2", 2000]
for item in lists:
print(item)
lists = ["m1", 1900, "m2", 2000]
for item in lists:
item = 0;
print(lists)
二、while循环遍历:
lists = ["m1", 1900, "m2", 2000]
count = 0
while count < len(lists):
print(lists[count])
count = count + 1
三、索引遍历:
for index in range(len(lists)):
print(lists[index])
四、使用iter()
for val in iter(lists):
print(val)
五、enumerate遍历方法
for i, val in enumerate(lists):
print(i, val)
从非零下标遍历元素时,可以使用以下方法
for i, el in enumerate(lists, 1):
print(i, el)
以上就是关于python循环遍历的全部内容了,保存下来试试吧~如需了解更多python实用知识,点击进入
。
(推荐操作系统:windows7系统、Python 3.9.1,DELL G3电脑。)
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python如何保存结果12/08
- ♥ python如何执行DOS命令12/02
- ♥ 如何用 Python3 输出地图函数?10/27
- ♥ python如何嵌入java11/09
- ♥ python程序是如何工作的09/25
- ♥ python访问限制的实现12/31
内容反馈