Python Operation
Here is a building that can control the activities.
Consider the revelation 4 + 5 = 9. Here, 4 and 5 are called tasks and + are a function.
like this.
Support the Python language after the types of operators:
- Arithmetic Operators
- Comparison (Relational) Operators
- Assignment Operators
- Logical Operators
- Bitwise Operators
- Membership Operators
- Identity Operators
Let's look at each of our employees.
Python Arithmetic Operators:
Talk about a change of 10 and a change B has 20
Operator
|
Description
|
Example
|
+ Addition
|
Adds values on either side of the operator.
|
a + b = 30
|
- Subtraction
|
Subtracts the right-hand operand from left-hand operand.
|
a – b = -10
|
* Multiplication
|
Multiplies values on either side of the operator
|
a * b = 200
|
/ Division
|
Divides left hand operand by right hand operand
|
b / a = 2
|
Python comparison Operators:
Talk about a change of 10 and a change B has 20The comparative lecturer evaluates each of them and decides on the relationship between them. Also known as a task force.
Operator
|
Description
|
Example
|
==
|
If the values of two operands are equal, then the condition becomes true.
|
(a == b) is not true.
|
!=
|
If values of two operands are not equal, then condition becomes true.
|
(a != b) is true.
|
<>
|
If values of two operands are not equal, then condition becomes true.
|
(a <> b) is true. This is similar to != operator.
|
Python Assignment Operators:
Talk about a change of 10 and a change B has 20
Operator
|
Description
|
Example
|
=
|
Assigns values from right side operands to left side operand
|
c = a + b assigns the value of a + b into c
|
+= Add AND
|
It adds right operand to the left operand and assigns the result to left operand
|
c += a is equivalent to c = c + a
|
-= Subtract AND
|
It subtracts right operand from the left operand and assigns the result to left operand
|
c -= a is equivalent to c = c - a
|
*= Multiply AND
|
It multiplies right operand with the left operand and assigns the result to left operand
|
c *= a is equivalent to c = c * a
|
Python Bitwise Operators:
The activities were slightly smaller in the small surgery. Think if a = 60; and b = 13; Now the optional option will be as follows -
a = 0011 1100
b = 0000 1101
-----------------
a & b = 0000 1100
a | b = 0011 1101
^ A b = 0011 0001
~ A = 1100 0011
The bottom line of the phone line is Python's language
Operator
|
Description
|
Example
|
& Binary AND
|
Operator copies a bit to the result if it exists in both operands
|
(a & b) (means 0000 1100)
|
| Binary OR
|
It copies a bit if it exists in either operand.
|
(a | b) = 61 (means 0011 1101)
|
^ Binary XOR
|
It copies the bit if it is set in one operand but not both.
|
(a ^ b) = 49 (means 0011 0001)
|
~ Binary Ones Complement
|
It is unary and has the effect of 'flipping' bits.
|
(~a ) = -61 (means 1100 0011 in 2's complement form due to a signed binary number.
|
Python Logical Operators:
For those who work with teachers who support the Python language. Talk about changes in 10 and variable B with 20.
Operator
|
Description
|
Example
|
and Logical AND
|
If both the operands are true then condition becomes true.
|
(a and b) is true.
|
or Logical OR
|
If any of the two operands are non-zero then condition becomes true.
|
(a or b) is true.
|
not Logical NOT
|
Used to reverse the logical state of its operand.
|
Not(a and b) is false.
|
Python Membership Operators:
Python employees confirm the membership of a member of the series, such as signs, lists or theft. There are two members of membership as specified below -
Operator
|
Description
|
Example
|
in
|
Evaluates to true if it finds a variable in the specified sequence and false otherwise.
|
x in y, here in results in a 1 if x is a member of sequence y.
|
not in
|
Evaluates to true if it does not finds a variable in the specified sequence and false otherwise.
|
x not in y, here not in results in a 1 if x is not a member of sequence y.
|
Python Identity Operators:
Recognize employers by comparing two positions in memory. There are two people who work with ID
Priority for Python employees:
The following table is the list of all the people who work at the highest priority.
Operator
|
Description
|
Example
|
is
|
Evaluates to true if the variables on either side of the operating point to the same object and false otherwise.
|
x is y, here is results in 1 if id(x) equals id(y).
|
is not
|
Evaluates to false if the variables on either side of the operating point to the same object and true otherwise.
|
x is not y, here is not results in 1 if id(x) is not equal to id(y).
|
Comments
Post a Comment