1 00:00:00,009 --> 00:00:03,349 Welcome officially to the third section. And now 2 00:00:03,609 --> 00:00:07,230 the fun really begins. Now we're starting to take 3 00:00:07,719 --> 00:00:09,789 a sort of a deeper 4 00:00:09,960 --> 00:00:13,850 step or a bigger step into the world of Python programming 5 00:00:14,079 --> 00:00:17,549 because here we're going to be talking about control flow 6 00:00:17,889 --> 00:00:19,549 and loops. 7 00:00:19,729 --> 00:00:24,049 Now. So far in the previous two sections, we've talked about strings and integers 8 00:00:24,219 --> 00:00:28,149 and the programs have been pretty for the most part basic, right? 9 00:00:28,440 --> 00:00:31,700 You can either maybe have an input or we provide 10 00:00:31,709 --> 00:00:34,069 ourselves with some string and integers and then we say, 11 00:00:34,080 --> 00:00:37,880 OK, I'm going to do this and do this and do that and then simply print, right? 12 00:00:38,240 --> 00:00:41,200 But now with control flow and loops, 13 00:00:41,389 --> 00:00:44,009 what if we wanted to say? OK? 14 00:00:44,439 --> 00:00:47,020 If something is this, 15 00:00:47,220 --> 00:00:49,619 then let us do that. 16 00:00:50,470 --> 00:00:55,250 But if something isn't this thing, let us do something else. 17 00:00:55,729 --> 00:01:00,529 This is control flow and loops. Also. 18 00:01:00,779 --> 00:01:04,209 What if, for example, we had like a list, 19 00:01:04,519 --> 00:01:09,010 OK? It could be a list of names, a list of books, a list of passwords, right? 20 00:01:09,379 --> 00:01:13,669 And then we wanted to go through each password in that list 21 00:01:13,830 --> 00:01:15,129 and do something, 22 00:01:15,360 --> 00:01:15,769 right? 23 00:01:16,010 --> 00:01:19,400 Maybe we wanted to take each password and encrypt them, 24 00:01:19,519 --> 00:01:22,040 or maybe we want to take each password and then 25 00:01:22,050 --> 00:01:26,120 check to see if the password is actually strong or weak 26 00:01:26,239 --> 00:01:28,279 depending on several kinds of conditions. 27 00:01:28,290 --> 00:01:30,230 We're going to cover that in this section. 28 00:01:30,239 --> 00:01:33,410 This is going to be one of the major sections in 29 00:01:33,669 --> 00:01:35,470 this particular course. 30 00:01:35,480 --> 00:01:39,680 And I'm really excited to teach you about control flow and loops. 31 00:01:39,989 --> 00:01:40,669 Let's begin.