Python: 循环迭代列表中的特定元素


在本教程中,我们将编写一个程序来循环迭代给定列表中的元素。让我们看看解决此问题的步骤

  • 初始化列表和索引。
  • 使用len查找列表的长度。
  • 使用长度迭代列表。
  • 使用index % length查找元素的索引。
  • 打印元素。
  • 增加索引。

这是一个简单的循环迭代。你可以毫无问题地编写它。下面让我们看看代码。

示例

 在线演示

# initializing the list and index
alphabets = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']
start_index = 5
# finding the length
length = len(alphabets)
# iterating over the list
for i in range(length):
   # finding the index of the current element
   element_index = start_index % length
   # printing the element
   print(alphabets[element_index], end=' ')
# incrementing the index for the next element
start_index += 1

输出

如果你运行上面的代码,那么你会得到以下结果。

f g h a b c d e

结论

如果你对本教程有任何疑问,请在评论部分提到它们。

更新于: 2020 年 7 月 7 日

1K+ 查看次数

开启你的 职业生涯

完成课程后获得认证

开始
广告