欢呼河马

文章
4
资源
0
加入时间
2年10月17天

Python中for循环使用enumerate() 函数

Python中for循环使用enumerate() 函数enumerate()是python的内置函数、适用于python2.x和python3.xenumerate参数为可遍历/可迭代的对象(如列表、字符串、元组)实例:>>>seq = ['one', 'two', 'three']>>> for i, element in enumerate(s...