1 00:00:00,090 --> 00:00:01,020 Hello there. 2 00:00:01,110 --> 00:00:08,730 In this video I'm going to give you a quick introduction to what operators are in Python. 3 00:00:08,730 --> 00:00:15,790 I will also show you a list of some common operators that are used in Python. 4 00:00:15,810 --> 00:00:17,930 So what are operators. 5 00:00:18,180 --> 00:00:24,140 Operators in Python are used to provide functionality. 6 00:00:24,160 --> 00:00:28,680 Does does something with some values. 7 00:00:28,680 --> 00:00:34,620 So you have a value could be a numeric value or a text related value. 8 00:00:34,740 --> 00:00:40,350 You can use operators to manipulate that values. 9 00:00:40,350 --> 00:00:47,880 Operators are basically represented with symbols such as a plus symbol. 10 00:00:47,880 --> 00:00:50,450 They are different types of operators. 11 00:00:50,500 --> 00:00:54,730 The plus basically is used to do addition. 12 00:00:55,140 --> 00:01:08,100 Also operators require some data to operate on or work with the data that the operator uses is referred 13 00:01:08,100 --> 00:01:11,710 to as the upper hand. 14 00:01:11,730 --> 00:01:18,190 For example we have three plus four three and four are known as Upper hands. 15 00:01:18,200 --> 00:01:18,640 Wow. 16 00:01:18,630 --> 00:01:25,120 The plus or addition symbol is an operator. 17 00:01:25,140 --> 00:01:30,540 Let's take a look at some common operators that you can use in Python. 18 00:01:30,560 --> 00:01:38,010 First is the arithmetic operator and that's basically used to perform different types of mathematical 19 00:01:38,400 --> 00:01:41,510 operations on a set of values. 20 00:01:41,700 --> 00:01:48,900 And then we have the assignment operators basically use to assign values we have comparison operators 21 00:01:48,900 --> 00:01:51,600 used to compare values. 22 00:01:51,600 --> 00:02:03,330 We have logical operators logical operators basically use to combine conditional statements. 23 00:02:03,330 --> 00:02:14,010 We also have the identity operators the identity operators are basically used to check that if certain 24 00:02:14,010 --> 00:02:16,500 values are the same. 25 00:02:17,010 --> 00:02:25,230 So they will compare the values of certain objects and check if they are the same or not. 26 00:02:25,230 --> 00:02:30,520 Next we have the membership operators. 27 00:02:30,580 --> 00:02:44,690 Membership operators are basically use to check or test if a certain value exists in a sequence of values. 28 00:02:44,700 --> 00:02:53,520 And finally we've got the beat wise operators that bet wise operators are the type of operators that 29 00:02:53,520 --> 00:03:02,000 I used to compare binary numbers binary numbers are numbers are represented in zeros and ones. 30 00:03:02,000 --> 00:03:07,450 So these are the basic operators that you can use in Python. 31 00:03:07,890 --> 00:03:09,900 Thanks for watching and bye for now.