1 00:00:00,120 --> 00:00:01,980 ‫Welcome to the Methods chapter. 2 00:00:01,980 --> 00:00:07,800 ‫In this chapter, you're going to see how to use methods, what methods are how methods save you a lot 3 00:00:07,800 --> 00:00:12,540 ‫of time and why they are important, how you can use them in order to structure your code. 4 00:00:12,540 --> 00:00:18,960 ‫You are going to see methods with parameters without parameters with return value without return value. 5 00:00:18,990 --> 00:00:23,550 ‫All of these words might seem unfamiliar yet, but no worries. 6 00:00:23,550 --> 00:00:25,680 ‫We're going to look into every single one of them. 7 00:00:25,680 --> 00:00:29,040 ‫And then we are also going to check out operators. 8 00:00:29,040 --> 00:00:32,400 ‫We're going to have some exercises in there as well. 9 00:00:32,400 --> 00:00:38,310 ‫So I really recommend that you check those exercises out, that you finished those exercises as well 10 00:00:38,310 --> 00:00:40,860 ‫as you can, and then you go to the next video. 11 00:00:40,860 --> 00:00:43,080 ‫Then we're going to see how to use user input. 12 00:00:43,080 --> 00:00:48,570 ‫So you will be able to put some data in and that data will then be used in your program, which is pretty 13 00:00:48,570 --> 00:00:49,050 ‫cool. 14 00:00:49,050 --> 00:00:54,930 ‫Then we're going to also see how to use try and catch because when you enter an input or when you pass 15 00:00:54,930 --> 00:00:57,510 ‫an input to your program, things can go wrong. 16 00:00:57,510 --> 00:01:01,650 ‫Maybe you give the wrong data type and you've seen what data types are in the last chapter, right? 17 00:01:01,650 --> 00:01:06,930 ‫So maybe you pass the wrong data type and then your program could crash and that's exactly what Try 18 00:01:06,930 --> 00:01:11,640 ‫and catch will come in handy and we're going to look into how we can use that. 19 00:01:11,790 --> 00:01:12,300 ‫All right. 20 00:01:12,300 --> 00:01:14,250 ‫So see you in the next video.