如何在Python中的for循环中更改索引的值?

时间:2018-12-23 13:59:06

标签: python python-3.x

我想使用if语句在循环内更改for循环的索引值。

for i in range(0,10):
    print(i)
    if i==5:
    i=10

结果是

0
1
2
3
4
5
6
7
8
9

我期望的是:

0
1
2
3
4
5

0 个答案:

没有答案