1 00:00:00,009 --> 00:00:02,509 So welcome to the data structures section. 2 00:00:02,519 --> 00:00:07,369 And in here, we're going to focus on three main types of data structures. 3 00:00:07,469 --> 00:00:11,710 We're going to talk about lists, dictionaries and sets and of course, 4 00:00:11,819 --> 00:00:15,109 I'm going to highlight to you the differences between these three. 5 00:00:15,380 --> 00:00:19,459 So you're going to learn exactly what makes a list different from a dictionary. 6 00:00:19,520 --> 00:00:22,040 You're gonna learn exactly what a set is. 7 00:00:22,270 --> 00:00:26,680 And then once you've learned how to create your own sets and dictionaries and lists, 8 00:00:26,770 --> 00:00:30,389 we're going to learn how to incorporate loops into them. 9 00:00:30,399 --> 00:00:32,750 So say, for example, you have a list of passwords 10 00:00:32,889 --> 00:00:37,659 and you wanted a loop to go through each password and do something, 11 00:00:37,720 --> 00:00:41,360 you're going to learn how to do something similar in this particular section. 12 00:00:41,680 --> 00:00:45,700 And of course, there's going to be a wide variety of different coding exercises. 13 00:00:45,709 --> 00:00:47,610 So please do attempt them. 14 00:00:47,790 --> 00:00:50,250 There are also going to be two programming challenges which of course 15 00:00:50,259 --> 00:00:52,619 I'm going to walk you through on how to solve them. 16 00:00:52,790 --> 00:00:55,740 And of course, just like with every other section at the end, 17 00:00:55,909 --> 00:00:59,479 we are going to have the main coding exercise which I want you to attempt. 18 00:00:59,490 --> 00:01:03,220 So please make sure you do. So, without wasting any more time, 19 00:01:03,610 --> 00:01:04,500 let's jump right in.