跳过python中range函数中的值

遍历一系列数字并跳过一个值的有效方法是什么?例如,范围是从0到100,而我想跳过50。

编辑:这是我正在使用的代码

for i in range(0, len(list)):

x= listRow(list, i)

for j in range (#0 to len(list) not including x#)

...

回答:

您可以使用以下任何一种:

# Create a range that does not contain 50

for i in [x for x in xrange(100) if x != 50]:

print i

# Create 2 ranges [0,49] and [51, 100] (Python 2)

for i in range(50) + range(51, 100):

print i

# Create a iterator and skip 50

xr = iter(xrange(100))

for i in xr:

print i

if i == 49:

next(xr)

# Simply continue in the loop if the number is 50

for i in range(100):

if i == 50:

continue

print i

以上是 跳过python中range函数中的值 的全部内容, 来源链接: utcz.com/qa/422893.html

回到顶部