1 00:00:00,000 --> 00:00:05,429 [MUSIC] 2 00:00:05,429 --> 00:00:06,239 In Python, 3 00:00:06,239 --> 00:00:12,210 your class has access to a lot of methods that are hidden behind the scenes. 4 00:00:12,210 --> 00:00:16,284 Let's take a look and see what methods our car class has already. 5 00:00:20,032 --> 00:00:25,950 We're going to use dir on an instance of our car class. 6 00:00:27,570 --> 00:00:30,025 And let's print it out, so we can see it in the console. 7 00:00:37,921 --> 00:00:39,240 Okay. 8 00:00:39,240 --> 00:00:45,960 So we can see all of the methods and attributes, that we have made so far. 9 00:00:45,960 --> 00:00:49,950 But there are also a lot of Dunder methods that we didn't create. 10 00:00:51,188 --> 00:00:55,610 These are built-in methods that are automatically created, and 11 00:00:55,610 --> 00:00:58,020 give us unlimited power. 12 00:00:59,296 --> 00:01:03,886 Just kidding, [LAUGH] but they can make our life a lot easier by 13 00:01:03,886 --> 00:01:08,032 helping Python know how to interact with our objects. 14 00:01:08,032 --> 00:01:11,509 I'm going to pick out a couple I think you might use often. 15 00:01:11,509 --> 00:01:14,189 But I'll put a link in the teacher's notes below, 16 00:01:14,189 --> 00:01:16,190 if you want to learn about all of them. 17 00:01:17,200 --> 00:01:18,090 Let's get into it.