condition = True
for index in range(35, 100):
if condition == True:
index += 5
print(index)
The for-loops gives me the result of 40 41 ...... 101 102 103 104 105
I hope that index can be like 35 40 45 50 55.......100
but it's seems like doesn't work properly.