1 00:00:00,000 --> 00:00:06,000 You can now create reusable Python programs with reusable blocks of code. 2 00:00:06,001 --> 00:00:10,000 You can also use variables to store values and use them later. 3 00:00:10,001 --> 00:00:15,000 Well, you have everything you need to continue your Python journey 4 00:00:15,001 --> 00:00:19,000 and here is the next step with the level 3 of this course. 5 00:00:19,001 --> 00:00:21,382 Note that it's important you feel comfortable 6 00:00:21,394 --> 00:00:24,000 with what you've learned in the previous lessons, 7 00:00:24,001 --> 00:00:28,000 because that is the starting point for this section. 8 00:00:28,001 --> 00:00:32,000 If not, rewatch some of them before you continue. 9 00:00:32,001 --> 00:00:37,000 So, in the following lessons, you will discover conditions and loops. 10 00:00:37,001 --> 00:00:42,000 Those will allow you to create many different 11 00:00:42,001 --> 00:00:44,000 execution paths for different runs of your program. 12 00:00:44,001 --> 00:00:49,000 Let's say you want to ask for the user age and then 13 00:00:49,001 --> 00:00:51,000 display a different message depending on the age. 14 00:00:51,001 --> 00:00:55,000 Or you want to get the list of temperatures you don't 15 00:00:55,001 --> 00:00:57,000 know in advance and finally compute the average. 16 00:00:57,001 --> 00:01:00,000 For that, you will need conditions and loops. 17 00:01:00,001 --> 00:01:03,389 And as you will see, it won't take much time before 18 00:01:03,401 --> 00:01:07,000 you can use those new concepts correctly in your code. 19 00:01:07,001 --> 00:01:10,378 At the end of the section, you will be able to 20 00:01:10,390 --> 00:01:14,000 create more powerful and dynamic Python programs. 21 00:01:14,001 --> 00:01:15,001 And let's get started.