Back to Freecodecamp

Files as a Sequence

curriculum/challenges/english/blocks/python-for-everybody/5e7b9f080b6c005b0e76f063.md

latest456 B
Original Source

--description--

More resources:

- <a href="https://www.youtube.com/watch?v=il1j4wkte2E" target="_blank" rel="noopener noreferrer nofollow">Exercise</a>

--questions--

--text--

What does the word 'continue' do in the middle of a loop?

--answers--

Skips to the code directly after the loop.


Skips to the next line in the code.


Skips to the next iteration of the loop.


Skips the next block of code.

--video-solution--

3