python-enumerate方法

Posted 流浪猫の窝

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-enumerate方法相关的知识,希望对你有一定的参考价值。

enumerate方法用于循环list或tuple,循环的时候可以得到索引值和当前索引的对象:

letters = [a, b, c, d, e]
for i, letter in enumerate(letters):
    print(i, letter)

# i是索引值 0,1,2...
# letter是各个项 ‘a‘,‘b‘,‘c‘...

*注意: 也可以循环tuple

 

以上是关于python-enumerate方法的主要内容,如果未能解决你的问题,请参考以下文章

Python-enumerate() 函数

Python-enumerate() 函数

VSCode自定义代码片段—— 数组的响应式方法

VSCode自定义代码片段10—— 数组的响应式方法

Android课程---Android Studio使用小技巧:提取方法代码片段

Sleep() 方法后的代码片段没有被执行