You learn how a basic project is set up and explore two approaches to Python programming: using the REPL and writing Python files.
Since projects often get distributed over multiple files or require code from other sources, we will investigate how to import code from other files or libraries.
Loops are a good choice when it comes to repeating actions. In this section, the "while"-loop will be introduced as a method of repeating code based on condition.
Introducing the second kind of loop, the "for"-loop is well suited to iterate over a set of data or repeat a set of instructions a given amount of times.
Tuples are a great way to bundle up multiple values. Learn how to employ them and take advantage of Python's automatic Packing/unpacking feature.