+ 1
Someone gonna help me with the continue function in a while loop inside a python code.
2 Answers
+ 2
print off number
for i in range(0,10):
if i%2!=0:
continue
else:
echo i
this will print the odd number if it is even number then it continue with next iteration
0
continue means skip or jump it..