Operators are special symbols in Python that perform specific operations on one, two, or three operands. There are various types of operators in Python, including arithmetic, comparison, assignment, logical, bitwise, membership, and identity operators.
Arithmetic operators perform mathematical operations such as addition, subtraction, multiplication, and division.
Comparison operators compare two values and return a Boolean value (True or False) based on the result of the comparison.
Assignment operators assign a value to a variable.
Logical operators perform logical operations such as AND, OR, and NOT.
Bitwise operators perform bitwise operations on integers, such as shifting bits and performing bitwise AND, OR, and XOR operations.
Membership operators test for membership in a sequence (such as a list or string).
Identity operators test for object identity (whether two objects are the same object in memory).
Operators have a specific order of precedence, which determines the order in which they are evaluated in an expression.
for example, the exponentiation operator has a higher precedence than the multiplication and division operators, which in turn have a higher precedence than the addition and subtraction operators. However, one can use parentheses to change the order of precedence and specify the order in which the operators should be evaluated.
Arithmetic Operators
Arithmetic operators are special symbols in Python that perform mathematical operations on two operands. The operands can be integers, floating-point numbers, or complex numbers. The result of the operation depends on the type of the operands. The following are the arithmetic operators available in Python:
+ : addition
- : subtraction
* : multiplication
/ : division (returns a floating-point value)
// : floor division (returns an integer by rounding the result down to the nearest whole number)
% : modulus (returns the remainder of the division)
** : exponentiation (raises a number to a power)
Here is an example of how you can use these operators in Python:
Comparison Operators
Comparison operators are special symbols in Python that compare two values and return a Boolean value (True or False) based on the result of the comparison. The operands can be integers, floating-point numbers, strings, lists, tuples, sets, dictionaries, or other objects. The following are the comparison operators available in Python:
== : equal to
!= : not equal to
> : greater than
< : less than
>= : greater than or equal to
<= : less than or equal to
Here is an example of how you can use these operators in Python:
Assignment Operators
Assignment operators are special symbols in Python that assign a value to a variable. The operands can be any type of object, including integers, floating-point numbers, strings, lists, tuples, sets, dictionaries, or other objects. The following are the assignment operators available in Python:
= : assignment
+= : addition assignment (increases the value of a variable by a given amount)
-= : subtraction assignment (decreases the value of a variable by a given amount)
*= : multiplication assignment (multiplies the value of a variable by a given amount)
/= : division assignment (divides the value of a variable by a given amount)
//= : floor division assignment (divides the value of a variable by a given amount and rounds down to the nearest whole number)
%= : modulus assignment (sets the value of a variable to the remainder of a division operation)
**= : exponentiation assignment (raises the value of a variable to a given power)
Here is an example of how you can use these operators in Python:
a, b = 3, 5
#assignment operator
a = b
#addition assignment operator
a += b
#subtraction assignment operator
a -= b
#multiplication assignment operator
a *= b
#division assignment operator
a /= b
#floor division assignment operator
a //= b
#modulus assignment operator
a %= b
#exponentiation assignment operator
a **= b
Logical Operators
Logical operators are special symbols in Python that perform logical operations on two operands. The operands must be Boolean values (True or False). The result of the operation is also a Boolean value.
The following are the logical operators available in Python:
and : returns True if both operands are True
or : returns True if at least one operand is True
not : returns True if the operand is False, and False if the operand is True
Here is an example of how you can use these operators in Python:
Bitwise Operators
Bitwise operators are special symbols in Python that perform bitwise operations on integers. Bitwise operations manipulate the individual bits of an integer value. They are often used to perform low-level operations on hardware devices or to optimize code for performance. The following are the bitwise operators available in Python:
& : bitwise AND
| : bitwise OR
^ : bitwise XOR
~ : bitwise NOT
<< : left shift
>> : right shift
Membership Operators
Membership operators are special symbols in Python that test for membership in a sequence (such as a list, tuple, or string). They return a Boolean value (True or False) based on the result of the test.
The following are the membership operators available in Python:
in : returns True if the operand is an element in the sequence
not in : returns True if the operand is not an element in the sequence
Identity Operators
Identity operators are special symbols in Python that test for object identity (whether two objects are the same object in memory). They return a Boolean value (True or False) based on the result of the test.
The following are the identity operators available in Python:
is : returns True if the operands are the same object
is not : returns True if the operands are not the same object
Comments