1 00:00:00,000 --> 00:00:03,720 You can now create reusable Python programs with 2 00:00:03,750 --> 00:00:06,990 reusable blocks of code. You can also use 3 00:00:06,990 --> 00:00:09,720 variables to store values and use them later. 4 00:00:10,260 --> 00:00:13,200 Well, you have everything you need to continue 5 00:00:13,230 --> 00:00:16,230 your Python journey. And here is the next step, 6 00:00:16,260 --> 00:00:19,530 we've delivered for you of this course. Note that 7 00:00:19,530 --> 00:00:22,230 it's important that you feel comfortable with what 8 00:00:22,230 --> 00:00:24,810 you've learned in the previous lessons, because 9 00:00:24,930 --> 00:00:27,960 that is the starting point for this section. If 10 00:00:27,960 --> 00:00:32,850 not, rewatch some of them before you continue. So, 11 00:00:33,060 --> 00:00:35,610 in the following lessons, you will discover 12 00:00:35,640 --> 00:00:39,000 conditions and loops. Those will allow you to 13 00:00:39,000 --> 00:00:42,780 create many different execution path for different 14 00:00:42,780 --> 00:00:46,020 runs of your program. Let's say you want to ask 15 00:00:46,020 --> 00:00:48,420 for the user page and then display a different 16 00:00:48,420 --> 00:00:52,320 message depending on the age. You want to get the 17 00:00:52,320 --> 00:00:54,870 list of temperatures you don't know in advance, 18 00:00:55,140 --> 00:00:58,320 and finally, compute the average. For that you 19 00:00:58,320 --> 00:01:01,740 will need conditions and loops. And as you will 20 00:01:01,740 --> 00:01:04,530 see, it won't take much time before you can use 21 00:01:04,560 --> 00:01:07,710 those new concepts correctly in your code. At the 22 00:01:07,710 --> 00:01:10,260 end of the section, you will be able to create 23 00:01:10,260 --> 00:01:14,070 more powerful and dynamic Python programs and 24 00:01:14,070 --> 00:01:15,307 let's get started.