1 00:00:00,770 --> 00:00:01,400 Welcome back. 2 00:00:01,940 --> 00:00:12,860 When we talked about lists, we saw our special type of nun where some methods that worked on lists 3 00:00:13,010 --> 00:00:17,210 didn't really produce anything, they modified the lists in place. 4 00:00:17,420 --> 00:00:21,050 But the output of whatever they were doing was this thing. 5 00:00:21,050 --> 00:00:25,000 Nun Remember how we had in the output this nun? 6 00:00:25,490 --> 00:00:26,600 What does that mean? 7 00:00:28,240 --> 00:00:36,070 If you remember, I mentioned none as a special data type that exists in Python and most languages have 8 00:00:36,070 --> 00:00:40,960 something like this to represent the absence of value in some other languages. 9 00:00:41,140 --> 00:00:47,110 You might have heard of NULL, which is another thing that, again, represents the absence of value. 10 00:00:48,220 --> 00:00:50,470 Now, why is this useful? 11 00:00:50,860 --> 00:00:55,140 Well, for now, it's hard to really conceptualize it. 12 00:00:55,180 --> 00:00:59,580 We'll see it being used a lot more as we get further into the course. 13 00:00:59,920 --> 00:01:03,220 But I could do something like A equals none. 14 00:01:03,970 --> 00:01:07,530 Let's say, for example, we're just starting a video game. 15 00:01:07,660 --> 00:01:12,460 And in this video game, we have a user's weapons. 16 00:01:13,730 --> 00:01:18,710 But when you're just starting the game, there are no weapons that the user has. 17 00:01:18,950 --> 00:01:22,670 Well, in that case, we might want to assign the variable weapons. 18 00:01:22,670 --> 00:01:24,830 Maybe in our code we use this variable. 19 00:01:25,100 --> 00:01:29,830 But we also want to know that this user doesn't really have any weapons. 20 00:01:29,840 --> 00:01:30,740 It's not. 21 00:01:31,070 --> 00:01:33,230 So this is completely valid. 22 00:01:34,070 --> 00:01:34,580 Python. 23 00:01:35,990 --> 00:01:37,340 If I run this. 24 00:01:38,660 --> 00:01:45,770 I get none and we'll explore this a little bit more throughout the course, like I said, but hopefully 25 00:01:45,770 --> 00:01:50,330 this way you're not intimidated when you see it as the name suggests, it's just nothing.