python通过索引遍历列表的方法

yipeiwu_com5年前Python基础

本文实例讲述了python通过索引遍历列表的方法。分享给大家供大家参考。具体如下:

python中我们可以通过for循环来遍历列表:

colours = ["red","green","blue"]
for colour in colours:
  print colour

如果希望遍历列表的同时得到元素的索引号,可以使用下面的代码:

colours = ["red","green","blue"]
for i, colour in enumerate(colours):
  print i, colour

希望本文所述对大家的Python程序设计有所帮助。

相关文章

关于Python3 lambda函数的深入浅出

我们常常看到一个这样的表达式  A=lambda x:x+1 可能会一头雾水不知道怎么计算 最基本的理解就是 def A(x): return x+1 但是理解程序不会将一个表...

python通过配置文件共享全局变量的实例

在使用Python编写的应用的过程中,有时会遇到多个文件之间传递同一个全局变量的情况,此时通过配置文件定义全局变量是一个比较好的选择。 首先配置config.py模块,config需要设...

Python计算机视觉里的IOU计算实例

其中x1,y1;x2,y2分别表示两个矩形框的中心点 def calcIOU(x1, y1, w1, h1, x2, y2, w2, h2): if((abs(x1 - x2)...

numpy.where() 用法详解

numpy.where() 用法详解

numpy.where (condition[, x, y]) numpy.where() 有两种用法: 1. np.where(condition, x, y) 满足条件(condit...

PyTorch中Tensor的拼接与拆分的实现

拼接张量:torch.cat() 、torch.stack() torch.cat(inputs, dimension=0) → Tensor 在给定维度上对输入的张量序列 s...