Almost everything in coding happens within the context of a loop. A loop allows you to repeat a section of code while some condition is true.
Break and Continue statements give you more control over loop iterations. You'll learn how to use them in this section of the course.
Functions allow us to write organized sections of reusable code. You'll create your first function in this video.
We can send values to functions to be processed. These values are known as parameters. We'll work with parameterized functions in Python in this video.