python有几种循环遍历的方法?

  • 更新时间:2021-06-27 08:57:41
  • 编辑:戴高寒
给寻找编程代码教程的朋友们精选了相关的编程文章,网友厍音仪根据主题投稿了本篇教程内容,涉及到Python相关内容,已被759网友关注,涉猎到的知识点内容可以在下方电子书获得。

参考资料

正文内容

这是一篇很好的python技术文章,实例用法很详细,增加了更多知识点内容,觉得好就请收藏下。

python有几种循环遍历的方法?

1、for-in可以用来遍历数组与字典。

words = ['cat', 'window', 'defenestrate']
 
for w in words:
    print(w, len(w))
 
# 使用数组访问操作符,能够迅速地生成数组的副本
for w in words[:]:
    if len(w) > 6:
        words.insert(0, w)
 
# words -> ['defenestrate', 'cat', 'window', 'defenestrate']

2、如果希望使用数字序列进行遍历,可以使用Python内置的range函数。

a = ['Mary', 'had', 'a', 'little', 'lamb']
 
for i in range(len(a)):
    print(i, a[i])

以上就是python2种循环遍历的方法,希望对大家有所帮助。

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

相关教程

用户留言