what does the word continue do in the middle of a strip python code example
Example: python continue
for i in range(10):
if i == 3: # skips if i is 3
continue
print(i)
for i in range(10):
if i == 3: # skips if i is 3
continue
print(i)