Today's tutorial is more about theoretical learning than coding because we must have basic knowledge about what we are actually implementing in our code because if our basis is strong then only we can make an efficient program of a larger scale.
“Operators in Python can be defined as symbols that assist us to perform certain operations. The operations can be between variable and variable, variable and value, value and value”
Operators that Python Language supports are:
We must remember most of them from our basic mathematics that we studied in school. May be except the last one, that might be new for some of us. To understand bitwise fully, we must have the basic knowledge of the conversion of decimal into binary. For example, the binary for the first five number is:
And so on.
Now I will give you a theoretical understanding of each of these operators. There is no theory related difference in them and the one we studied during school time. The only difference you will see will be in the syntax i.e. how to write them for perfect execution.
Basic mathematical operations such as addition, multiplication, subtraction, division, etc. are performed with the help of arithmetic Operations. It contains nearly all operations that we can perform with the help of a calculator. Symbols for such operators include *, /, %, -, //, etc.
The assignment operator is used to assign values to a variable. In some cases, we have to assign a variable’s value to another variable, in such cases the value of the right operand is assigned to the left operand. One of the basic signs from which we can recognize an assignment operator is that it must have an equal-to(=) sign. Some commonly used assignment operators include +=, -=, /=, etc.
They are also known as relational operators. They compare the values on either side of the operator and decide the relation among them. Commonly used comparison operators include ==, >, < , >=,etc.
Logical operators perform logical AND, OR and NOT, operations. They are usually used in conditional statements to join multiple conditions. AND, OR and NOT keywords are used to perform logical operations.
Identity operator checks if two operands share the same identity or not, which means that they share the same location in memory or different. “is” and “is not” are the keywords used for identity operands.
Membership operand checks if the value or variable is a part of a sequence or not. The sequence could be string, list, tuple, etc. “in” and “not in” are keywords used for membership operands.
Bitwise operands are used to perform bit by bit operation on binary numbers. First, we have to change the format of the number from decimal to binary and then compare them using AND, OR, XOR, NOT, etc.
# Operators In Pythons
# Arithmetic Operators
# Assignment Operators
# Comparison Operators
# Logical Operators
# Identity Operators
# Membership Operators
# Bitwise Operators
# Arithmetic Operators
# print("5 + 6 is ", 5+6)
# print("5 - 6 is ", 5-6)
# print("5 * 6 is ", 5*6)
# print("5 / 6 is ", 5/6)
# print("5 ** 3 is ", 5**3)
# print("5 % 5 is ", 5%5)
# print("15 // 6 is ", 15//6)
# Assignment Operators
# print("Assignment Operators")
# x = 5
# print(x)
# x %=7 # x = x%7
# print(x)
# Comparison Operators
i = 5
# Logical Operators
a = True
b = False
# Identity Operators
# print(5 is not 5)
# Membership Operators
list = [3, 3,2, 2,39, 33, 35,32]
# print(324 not in list)
# Bitwise Operators
# 0 - 00
# 1 - 01
# 2 - 10
# 3 - 11
print(0 & 2)
print(0 | 3)
give me source code else: i ma report your website
give me source code else: i am report your website
you have just 1 hour give me source code
harry over team unsubscribe your channel : because you tell about source code in video but you are not give source code,,, over team have 123 members : all of members unsubscribe your channel after 1 days . so give source code>..
source code video me dekh ke likho na kyu harry sir ko pareshan karrahe ho
harry
narry
carry
merry
harry carry merry nerry :> give me source code
No downloadable resources for this video. If you think you need anything, please post it in the QnA!
Any Course related announcements will be posted here