Heres the python code im having problems with:
for i in range (0,10): if i==5: i+=3 print i
I expected the output to be:
You can make the following modification to your for loop:
for
for i in range (0,10): if i in [5, 6, 7]: continue print(i)