1 00:00:00,000 --> 00:00:07,000 Let's start to see how we can use numbers and also operations on numbers with Python. 2 00:00:07,001 --> 00:00:11,000 So this will help us when we start to work with variables. 3 00:00:11,001 --> 00:00:15,034 So as you have seen, if I just type 2, okay, 4 00:00:15,046 --> 00:00:19,000 2 is evaluated here to 2, and it's printed. 5 00:00:19,001 --> 00:00:21,000 So you can see the number 2. 6 00:00:21,001 --> 00:00:25,000 So you can use round numbers in Python, okay, 2, 4. 7 00:00:25,001 --> 00:00:29,000 You can also use negative number, minus 3, etc. 8 00:00:29,001 --> 00:00:33,032 You can also make computations, for example, 4 9 00:00:33,044 --> 00:00:37,000 plus 5, okay, we can add a space for clarity. 10 00:00:37,001 --> 00:00:42,637 And you can see 4 plus 5 is evaluated to 9, okay, you can 11 00:00:42,649 --> 00:00:48,000 also do 7 minus 5, like this, is evaluated to 2, okay. 12 00:00:48,001 --> 00:00:52,000 Multiplication is also working and division. 13 00:00:52,001 --> 00:00:55,000 6 divided by 2 is equal to 3. 14 00:00:55,001 --> 00:01:00,000 As you can see here, we have 3.0, okay, we can also use float numbers. 15 00:01:00,001 --> 00:01:05,000 So let's say 3.14, okay, you can see 3.14. 16 00:01:05,001 --> 00:01:09,000 So if I just write 2, I get 2, like this, as a round number. 17 00:01:09,001 --> 00:01:15,000 If I write 2.0, okay, I get 2.0 as a float number. 18 00:01:15,001 --> 00:01:19,179 And you can also use any kind of computation 19 00:01:19,191 --> 00:01:23,000 on float number, let's say 2.5 plus 3.4, 20 00:01:23,001 --> 00:01:27,877 which is equal to 5.9, okay, you can combine 21 00:01:27,889 --> 00:01:33,000 operations, let's say 4 plus 5, multiply by 2, 22 00:01:33,001 --> 00:01:36,648 and you can see this is 14, and now I can also 23 00:01:36,660 --> 00:01:43,000 add parentheses to change the order, okay, multiply by 2, 18, okay. 24 00:01:43,001 --> 00:01:46,818 In this case here, the multiplication has the 25 00:01:46,830 --> 00:01:51,000 priority, so it will compute 10, okay, and add 4. 26 00:01:51,001 --> 00:01:56,000 In this case, because we have parentheses, then the addition has the priority, 27 00:01:56,001 --> 00:01:59,000 so it will compute 9 and then multiply by 2. 28 00:01:59,001 --> 00:02:02,389 So well, if you know basic math operations, you can 29 00:02:02,401 --> 00:02:06,000 see that working with numbers is not difficult at all.