Operators
What are Python Operators
Operators are symbols that perform operations on operands. Operands can be variables, strings, numbers, booleans etc
Table of Contents
- What are Python Operators
- Arithmetic
- Assignment
- Comparison
- The BMI Example
- Identity
- Logical
- Membership
- Exercise
Arithmetic
Arithemators are symbols that perform mathematical operations on operands
Arithmetic Operator | Description |
---|---|
+ | Addition |
- | Subraction |
/ | Division |
* | Multiplication |
** | Exponentiates |
% | Remainder |
// | Floor Division |
Addition Operator
The addition operator returns the sum of its numerical operands
15
It can also be used to concatenate or join strings together
Juma Shafara
Subtraction Operator
The subtraction operator returns the difference of its numerical operands
5
Multiplication Operator
The multiplication operator returns the product of its numerical operands
50
Division Operator
The division operator returns the quotient of its numerical operands.
2.0
Exponentiation Operator
The exponentiation operator raises the left operand to the power of the right operand
100000
Remainder Operators
The remainder operator, also knows as the modulus operator returns the remainder after dividing the left operand by the right operand
0
Floor Division Operator
The floor division rounds down the quotient of its numerical operands to the nearest whole number.
2
Operator Sequence
Operator sequence describes the order of performed operations in an arithmetic expression.
16.0
Assignment
Assignment operators are used to assign values to variables.
Name | Operation | Same As |
---|---|---|
Assignment | x = y | x = y |
Addition Ass | x += y | x = x + y |
Subtraction Ass | x -= y | x = x - y |
Mult Ass | x *= y | x = x * y |
Division Ass | x /= y | x = x / y |
Expo Ass | x **= y | x = x ** y |
Remainder Ass | x %= y | x = x % y |
Floor Div Ass | x //= y | x = x // y |
Assignment
The assignment operator assigns a value to a variable
10
Addition Assignment
The addition assignment operator adds the left and right operands and assigns the sum to the left operand (the variable)
15
Subtraction Assignment
The subtraction assignment operators deducts the right operand and assigns the difference to the left operand (the variable)
5
Comparison
A comparison operator compares its operands and returns a Boolean value based on whether the comparison is True of False
Name | Operation |
---|---|
Equality | == |
Inequality | != |
Greater than | > |
Less than | < |
Greater or equal | >= |
Less or equal | <= |
Equality
The equality operator compares two values and returns True
if the operands are equal, otherwise returns False
False
True
Inequality
The inequality operator compares two values and returns True
if the operands are Not equal, otherwise returns False
True
False
Greater than
The greater than operator returns True
if the left operand is greater than the right operand, otherwise returns False
.
True
False
Less than
The less than operator returns True
if the left operand is less than the right operand, otherwise returns False
True
False
Greater than or equal to
The greater than or equal to operator returns True
if the left operand is greater than or equal to the right operand, otherwise returns False
False
Less than or equal to
The less than or equal to operator returns True
if the left operand is less than or equal to the right operand, otherwise returns False
True
True
False
The Body Mass Index Example
In this example, we use the operators to calculate the body mass index of a person.
BMI: 24.88888888888889
Identity
Identity operators are used to compare two values to determine if they point to the same object
Operator | Name |
---|---|
is | The is operator |
is not | The is not operator |
The is
operator
This operator returns True
if both operands point to the same object.
False
False
True
The is not
operator
This operator return True
if both operands do Not point to the same object in memory
True
False
Logical
Logical operators are commonly used with Booleans. In Python, there are 3 logical operators
Operator | Description |
---|---|
and | Logical and operator |
or | Logical or |
not | Logical not |
Logical and
The logical and
operator returns True
if both operands are True
False
Logical or
The logical or
operator returns True
if one of the operands is True
True
Logical not
The logical not
operator returns True
if the operand is False
, otherwise returns False
if the operand is True
True
Membership
Membership operators are used to check if a sequence is present in an object like a string, list etc
Operator | Name |
---|---|
in | The in operator |
not in | The not in operator |
The in
operator
The in
operator returns True
if a sequence or value is present in an object
True
The not in
operator
The not in
operator returns True
if a sequence or value is NOT present in an object
False
Exercise
A car increases it velocity from u ms-1 to v ms-1 within t seconds. Write a program to calculate the acceleration.