1 00:00:00,009 --> 00:00:03,920 All right. So welcome officially to the very first main section 2 00:00:04,179 --> 00:00:07,409 in the actual Python course itself. And in here, 3 00:00:07,590 --> 00:00:11,390 we're going to be talking about variables and data types. 4 00:00:11,399 --> 00:00:14,079 Listen, I guarantee you that regardless 5 00:00:14,260 --> 00:00:16,620 of what programming language you're trying to learn, 6 00:00:16,850 --> 00:00:19,649 this typically is going to be the very first 7 00:00:19,659 --> 00:00:22,549 section because at the heart of every program, 8 00:00:22,659 --> 00:00:25,459 no matter how basic or advanced it is, 9 00:00:25,860 --> 00:00:32,439 it's going to revolve around some piece of data, whether it's strings or integers, 10 00:00:32,840 --> 00:00:35,400 you're going to have data involved in every program. 11 00:00:35,409 --> 00:00:39,520 So in this section, we're going to talk about the different types of data out there. 12 00:00:39,689 --> 00:00:43,799 We're also going to talk about the boolean operation. So say, for example, 13 00:00:44,099 --> 00:00:48,400 you wanted to say something isn't true or something is false, stuff like that. 14 00:00:48,650 --> 00:00:52,069 And then of course, the arithmetic operators. OK. 15 00:00:52,110 --> 00:00:56,409 How do you add, subtract multiply divide 16 00:00:56,720 --> 00:01:01,560 in Python basic math? Right? We're gonna learn all of that in this section. 17 00:01:01,569 --> 00:01:04,059 And then of course, at the end of the section, 18 00:01:04,309 --> 00:01:08,970 there's gonna be a coding exercise which I want you to attempt, 19 00:01:09,279 --> 00:01:10,220 give it your all. 20 00:01:10,230 --> 00:01:12,629 Don't worry if you're unable to solve it, 21 00:01:12,639 --> 00:01:15,580 I will provide you with the solution as well. 22 00:01:15,849 --> 00:01:16,430 So, 23 00:01:16,559 --> 00:01:20,389 congratulations. We're about to begin our journey into the world of Python. 24 00:01:20,639 --> 00:01:21,430 Let's begin.