2020-04-06 14:49:56 -04:00
|
|
|
---
|
|
|
|
id: 5e7b9f080b6c005b0e76f063
|
2020-04-21 23:37:02 -05:00
|
|
|
title: Files as a Sequence
|
2020-04-06 14:49:56 -04:00
|
|
|
challengeType: 11
|
|
|
|
videoId: cIA0EokbaHE
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: files-as-a-sequence
|
2020-04-06 14:49:56 -04:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --description--
|
|
|
|
|
2020-04-06 14:49:56 -04:00
|
|
|
More resources:
|
2020-11-27 19:02:05 +01:00
|
|
|
|
|
|
|
\- [Exercise](https://www.youtube.com/watch?v=il1j4wkte2E)
|
|
|
|
|
|
|
|
# --question--
|
|
|
|
|
|
|
|
## --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
|
|
|
|
|