标签: 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