SlideShare a Scribd company logo
OPERATORS IN PYTHON
OPERATORS IN PYTHON
10/11/2021 OPEARATORS IN PYTHON 2
Arithmetic Operators
Relational Operators
Logical Operators
Bitwise Operator
Assignment Operator
Special Operator
ARITHMETIC
OPERATORS IN
PYTHON
Arithmetic
operators are used
to perform
mathematical
operations like
addition,
subtraction,
multiplication, etc.
10/11/2021 OPEARATORS IN PYTHON 3
Operator Description Syntax
+ Add two operands or unary plus x+y+2
- Subtract right operand from the
left or unary minus
x-y-2
* Multiply two operands x*y
** Exponent - left operand raised to
the power of right
x**y
/ Divide left operand by the right
one (always results into float)
x/y
// Floor division - division that
results into whole number
adjusted to the left in the number
line
x//y
% Modulus - remainder of the
division of left operand by the
right
x%y
ARITHMETIC
OPERATORS IN
PYTHON
Practical approach :
Arithmetic
operators
execution with
output
10/11/2021 OPEARATORS IN PYTHON 4
COMPARISION
OPERATORS IN
PYTHON
Comparison
operators are used
to compare values.
It returns either
True or False
according to the
condition.
10/11/2021 OPEARATORS IN PYTHON 5
Operator Description Syntax
> Greater than - True if left operand
is greater than the right
x>y
< Less than - True if left operand is
less than the right
y<x
== Equal to - True if both operands
are equal
x==y
!= Not equal to - True if operands
are not equal
x!=y
>= Greater than or equal to - True if
left operand is greater than or
equal to the right
x>=y
<= Less than or equal to - True if left
operand is less than or equal to
the right
x<=y
COMPARISION
OPERATORS IN
PYTHON
Practical approach :
Comparision
operators
execution with
output
10/11/2021 OPEARATORS IN PYTHON 6
BITWISE
OPERATORS IN
PYTHON
Bitwise operators
act on operands as
if they were strings
of binary digits.
They operate bit by
bit, hence the.
10/11/2021 OPEARATORS IN PYTHON 7
Operator Description Syntax
& Bitwise and x & y
| Bitwise or x|y
~ Bitwise not ~x
^ Bitwise XOR x ^ y
>> Bitwise right
shift
x>>y
<< Bitwise left shift x<<y
Truth Table
AND
OR
Ex-OR
A B A &B
0 0 0
0 1 0
1 0 0
1 1 1
A B A |B
0 0 0
0 1 1
1 0 1
1 1 1
A B A |B
0 0 0
0 1 1
1 0 1
1 1 0
Left shift
operator
e.g.x>>y
i.e.x*2^y
Right shift
operator
e.g.x>>y
i.e.x/2^y
Not
operator
Bitwise (Not) one's compliment operator will
invert the binary bits.
If a bit is 1, it will change it to 0.
If the bit is 0, it will change it to 1.
The ones' complement binary numeral system
is characterized by the bit complement of any
integer value being the arithmetic negative of
the value.
BITWISE
OPERATORS IN
PYTHON
Practical approach :
Bitwise operators
execution with
output
10/11/2021 OPEARATORS IN PYTHON 12
LOGICAL
OPERATORS IN
PYTHON
Logical operators
are and,or & not
operators. It returns
either True or False
according to the
operator.
Practical approach :
Comparision
operators
execution with
output
10/11/2021 OPEARATORS IN PYTHON 13
Operator Description Syntax
and True if both the operands are true x and y
or True if either of the operands is
true
x or y
not True if operand is false
(complements the operand)
x not y
ASSIGNMENT
OPERATORS IN
PYTHON
Assignment operators
are used to assign
values to variables.
There are various
compound operators
in Python like a+=5
that adds to the
variable and later
assigns the same. It is
equivalent to a=a+5
10/11/2021 OPEARATORS IN PYTHON 14
Operator Example Equivalent to
= x=7 x=7
+= x+=7 x=x+7
-= x-=7 x=x-7
*= x*=7 x=x*7
/= x/=7 x=x/7
//= x//=7 x=x//7
%= x%=7 x=x%7
**= x**=7 x=x**7
&= x&=7 x=x&7
|= x|=7 x=x|7
^= x^=7 x=x^7
>>= x>>=7 x=x>>7
<<= x<<=7 x<<7
Special Operators
Identity operator
is and is not are the identity
operators in Python. They are used
to check if two values (or
variables) are located on the same
part of the memory.
Membership
Operator
in and not in are the membership
operators in Python. They are used
to test whether a value or variable
is found in a sequence
(string,list,tuple,set and
dictionary)
Difference between is and == operator
The is keyword is used to test if
two variables refer to the same
object.
The test returns True if the two
objects are the same object.
The test returns False if they
are not the same object, even if
the two objects are 100%
equal.
Use the == operator to test if
two variables are equal.
SPECIAL
OPERATORS IN
PYTHON
Practical approach :
special operators
execution with
output
10/11/2021 OPEARATORS IN PYTHON 17
Python
Operator
Precedence
Precedence Operator Sign Operator Name
Highest () Parentheses
** Exponent
+x,-x,~x Unary plus, Unary
minus, Bitwise
NOT
*,/,//,% Multiplication,
Division, Floor
division, Modulus
+,- Addition,
Subtraction
<<,>> Bitwise shift
operator
& Bitwise AND
^ Bitwise XOR
| Bitwise OR
Lowest ==,!=,>,>=,<,<=,is,is
not,in,not in
Comparision,Ident
ity ,Membership
operators
Ad

More Related Content

What's hot (20)

Datatypes in python
Datatypes in pythonDatatypes in python
Datatypes in python
eShikshak
 
Operators in Python
Operators in PythonOperators in Python
Operators in Python
Anusuya123
 
Variables in python
Variables in pythonVariables in python
Variables in python
Jaya Kumari
 
Python Operators
Python OperatorsPython Operators
Python Operators
Adheetha O. V
 
Introduction to Python
Introduction to Python  Introduction to Python
Introduction to Python
Mohammed Sikander
 
Python If Else | If Else Statement In Python | Edureka
Python If Else | If Else Statement In Python | EdurekaPython If Else | If Else Statement In Python | Edureka
Python If Else | If Else Statement In Python | Edureka
Edureka!
 
database language ppt.pptx
database language ppt.pptxdatabase language ppt.pptx
database language ppt.pptx
Anusha sivakumar
 
Iterarators and generators in python
Iterarators and generators in pythonIterarators and generators in python
Iterarators and generators in python
Sarfaraz Ghanta
 
Pointers in c++
Pointers in c++Pointers in c++
Pointers in c++
sai tarlekar
 
Python Data Types.pdf
Python Data Types.pdfPython Data Types.pdf
Python Data Types.pdf
NehaSpillai1
 
Data Type Conversion in C++
Data Type Conversion in C++Data Type Conversion in C++
Data Type Conversion in C++
Danial Mirza
 
Python for loop
Python for loopPython for loop
Python for loop
Aishwarya Deshmukh
 
Lesson 03 python statement, indentation and comments
Lesson 03   python statement, indentation and commentsLesson 03   python statement, indentation and comments
Lesson 03 python statement, indentation and comments
Nilimesh Halder
 
Functions in python
Functions in pythonFunctions in python
Functions in python
colorsof
 
Python-03| Data types
Python-03| Data typesPython-03| Data types
Python-03| Data types
Mohd Sajjad
 
Lesson 02 python keywords and identifiers
Lesson 02   python keywords and identifiersLesson 02   python keywords and identifiers
Lesson 02 python keywords and identifiers
Nilimesh Halder
 
Infix to Postfix Conversion Using Stack
Infix to Postfix Conversion Using StackInfix to Postfix Conversion Using Stack
Infix to Postfix Conversion Using Stack
Soumen Santra
 
Python: Modules and Packages
Python: Modules and PackagesPython: Modules and Packages
Python: Modules and Packages
Damian T. Gordon
 
Python : Operators
Python : OperatorsPython : Operators
Python : Operators
Emertxe Information Technologies Pvt Ltd
 
Infix prefix postfix
Infix prefix postfixInfix prefix postfix
Infix prefix postfix
Self-Employed
 
Datatypes in python
Datatypes in pythonDatatypes in python
Datatypes in python
eShikshak
 
Operators in Python
Operators in PythonOperators in Python
Operators in Python
Anusuya123
 
Variables in python
Variables in pythonVariables in python
Variables in python
Jaya Kumari
 
Python If Else | If Else Statement In Python | Edureka
Python If Else | If Else Statement In Python | EdurekaPython If Else | If Else Statement In Python | Edureka
Python If Else | If Else Statement In Python | Edureka
Edureka!
 
database language ppt.pptx
database language ppt.pptxdatabase language ppt.pptx
database language ppt.pptx
Anusha sivakumar
 
Iterarators and generators in python
Iterarators and generators in pythonIterarators and generators in python
Iterarators and generators in python
Sarfaraz Ghanta
 
Python Data Types.pdf
Python Data Types.pdfPython Data Types.pdf
Python Data Types.pdf
NehaSpillai1
 
Data Type Conversion in C++
Data Type Conversion in C++Data Type Conversion in C++
Data Type Conversion in C++
Danial Mirza
 
Lesson 03 python statement, indentation and comments
Lesson 03   python statement, indentation and commentsLesson 03   python statement, indentation and comments
Lesson 03 python statement, indentation and comments
Nilimesh Halder
 
Functions in python
Functions in pythonFunctions in python
Functions in python
colorsof
 
Python-03| Data types
Python-03| Data typesPython-03| Data types
Python-03| Data types
Mohd Sajjad
 
Lesson 02 python keywords and identifiers
Lesson 02   python keywords and identifiersLesson 02   python keywords and identifiers
Lesson 02 python keywords and identifiers
Nilimesh Halder
 
Infix to Postfix Conversion Using Stack
Infix to Postfix Conversion Using StackInfix to Postfix Conversion Using Stack
Infix to Postfix Conversion Using Stack
Soumen Santra
 
Python: Modules and Packages
Python: Modules and PackagesPython: Modules and Packages
Python: Modules and Packages
Damian T. Gordon
 
Infix prefix postfix
Infix prefix postfixInfix prefix postfix
Infix prefix postfix
Self-Employed
 

Similar to Operators in python (20)

Python Lec-6 Operatorguijjjjuugggggs.pptx
Python Lec-6 Operatorguijjjjuugggggs.pptxPython Lec-6 Operatorguijjjjuugggggs.pptx
Python Lec-6 Operatorguijjjjuugggggs.pptx
ks812227
 
Python Training in Bangalore | Python Operators | Learnbay.in
Python Training in Bangalore | Python Operators | Learnbay.inPython Training in Bangalore | Python Operators | Learnbay.in
Python Training in Bangalore | Python Operators | Learnbay.in
Learnbayin
 
Operators in Python Arithmetic Operators
Operators in Python Arithmetic OperatorsOperators in Python Arithmetic Operators
Operators in Python Arithmetic Operators
ramireddyobulakondar
 
Operators in python
Operators in pythonOperators in python
Operators in python
eShikshak
 
Operators expressions-and-statements
Operators expressions-and-statementsOperators expressions-and-statements
Operators expressions-and-statements
CtOlaf
 
C++ Expressions Notes
C++ Expressions NotesC++ Expressions Notes
C++ Expressions Notes
Prof Ansari
 
Operators
OperatorsOperators
Operators
jayesh30sikchi
 
Operators used in vb.net
Operators used in vb.netOperators used in vb.net
Operators used in vb.net
Jaya Kumari
 
Java script operators
Java script operatorsJava script operators
Java script operators
baabtra.com - No. 1 supplier of quality freshers
 
python operators.ppt
python operators.pptpython operators.ppt
python operators.ppt
ErnieAcuna
 
Python (high level programming ) language
Python (high level programming ) languagePython (high level programming ) language
Python (high level programming ) language
worldeader
 
5_Operators.pdf
5_Operators.pdf5_Operators.pdf
5_Operators.pdf
NiraliArora2
 
Python tutorials for beginners | IQ Online Training
Python tutorials for beginners | IQ Online TrainingPython tutorials for beginners | IQ Online Training
Python tutorials for beginners | IQ Online Training
Rahul Tandale
 
Python Programming | JNTUK | UNIT 1 | Lecture 5
Python Programming | JNTUK | UNIT 1 | Lecture 5Python Programming | JNTUK | UNIT 1 | Lecture 5
Python Programming | JNTUK | UNIT 1 | Lecture 5
FabMinds
 
Java 2
Java 2Java 2
Java 2
Preethi Nambiar
 
Java - Operators
Java - OperatorsJava - Operators
Java - Operators
Preethi Nambiar
 
Coper in C
Coper in CCoper in C
Coper in C
thirumalaikumar3
 
lecture4 pgdca.pptx
lecture4 pgdca.pptxlecture4 pgdca.pptx
lecture4 pgdca.pptx
classall
 
Operator & Expression in c++
Operator & Expression in c++Operator & Expression in c++
Operator & Expression in c++
bajiajugal
 
object oriented programming in javaTERNARY OPERATORS.pptx
object oriented programming in javaTERNARY OPERATORS.pptxobject oriented programming in javaTERNARY OPERATORS.pptx
object oriented programming in javaTERNARY OPERATORS.pptx
riazahamed37
 
Python Lec-6 Operatorguijjjjuugggggs.pptx
Python Lec-6 Operatorguijjjjuugggggs.pptxPython Lec-6 Operatorguijjjjuugggggs.pptx
Python Lec-6 Operatorguijjjjuugggggs.pptx
ks812227
 
Python Training in Bangalore | Python Operators | Learnbay.in
Python Training in Bangalore | Python Operators | Learnbay.inPython Training in Bangalore | Python Operators | Learnbay.in
Python Training in Bangalore | Python Operators | Learnbay.in
Learnbayin
 
Operators in Python Arithmetic Operators
Operators in Python Arithmetic OperatorsOperators in Python Arithmetic Operators
Operators in Python Arithmetic Operators
ramireddyobulakondar
 
Operators in python
Operators in pythonOperators in python
Operators in python
eShikshak
 
Operators expressions-and-statements
Operators expressions-and-statementsOperators expressions-and-statements
Operators expressions-and-statements
CtOlaf
 
C++ Expressions Notes
C++ Expressions NotesC++ Expressions Notes
C++ Expressions Notes
Prof Ansari
 
Operators used in vb.net
Operators used in vb.netOperators used in vb.net
Operators used in vb.net
Jaya Kumari
 
python operators.ppt
python operators.pptpython operators.ppt
python operators.ppt
ErnieAcuna
 
Python (high level programming ) language
Python (high level programming ) languagePython (high level programming ) language
Python (high level programming ) language
worldeader
 
Python tutorials for beginners | IQ Online Training
Python tutorials for beginners | IQ Online TrainingPython tutorials for beginners | IQ Online Training
Python tutorials for beginners | IQ Online Training
Rahul Tandale
 
Python Programming | JNTUK | UNIT 1 | Lecture 5
Python Programming | JNTUK | UNIT 1 | Lecture 5Python Programming | JNTUK | UNIT 1 | Lecture 5
Python Programming | JNTUK | UNIT 1 | Lecture 5
FabMinds
 
lecture4 pgdca.pptx
lecture4 pgdca.pptxlecture4 pgdca.pptx
lecture4 pgdca.pptx
classall
 
Operator & Expression in c++
Operator & Expression in c++Operator & Expression in c++
Operator & Expression in c++
bajiajugal
 
object oriented programming in javaTERNARY OPERATORS.pptx
object oriented programming in javaTERNARY OPERATORS.pptxobject oriented programming in javaTERNARY OPERATORS.pptx
object oriented programming in javaTERNARY OPERATORS.pptx
riazahamed37
 
Ad

More from deepalishinkar1 (20)

data structure stack appplication in python
data structure stack appplication in pythondata structure stack appplication in python
data structure stack appplication in python
deepalishinkar1
 
Stack application in infix to prefix expression
Stack application in infix to prefix expressionStack application in infix to prefix expression
Stack application in infix to prefix expression
deepalishinkar1
 
Data Structure Stack operation in python
Data Structure Stack operation in pythonData Structure Stack operation in python
Data Structure Stack operation in python
deepalishinkar1
 
steps for template in django for project
steps for template in django for projectsteps for template in django for project
steps for template in django for project
deepalishinkar1
 
Web application on menu card qrcode generator.pdf
Web application on menu card qrcode generator.pdfWeb application on menu card qrcode generator.pdf
Web application on menu card qrcode generator.pdf
deepalishinkar1
 
Django model create a table in django web framework
Django model create a table in django web frameworkDjango model create a table in django web framework
Django model create a table in django web framework
deepalishinkar1
 
TO DO APP USING STREAMLIT PYTHON PROJECT
TO DO APP USING STREAMLIT PYTHON PROJECTTO DO APP USING STREAMLIT PYTHON PROJECT
TO DO APP USING STREAMLIT PYTHON PROJECT
deepalishinkar1
 
basic concepts of object oriented in python
basic concepts of object oriented in pythonbasic concepts of object oriented in python
basic concepts of object oriented in python
deepalishinkar1
 
Inheritance and polymorphism oops concepts in python
Inheritance and polymorphism  oops concepts in pythonInheritance and polymorphism  oops concepts in python
Inheritance and polymorphism oops concepts in python
deepalishinkar1
 
DATABASE CONNECTIVITY PYTHON USING MYSQL/SQLITE/POSTGRE
DATABASE CONNECTIVITY PYTHON USING MYSQL/SQLITE/POSTGREDATABASE CONNECTIVITY PYTHON USING MYSQL/SQLITE/POSTGRE
DATABASE CONNECTIVITY PYTHON USING MYSQL/SQLITE/POSTGRE
deepalishinkar1
 
File Operations in python Read ,Write,binary file etc.
File Operations in python Read ,Write,binary file etc.File Operations in python Read ,Write,binary file etc.
File Operations in python Read ,Write,binary file etc.
deepalishinkar1
 
How to create a django project procedure
How to create a django project procedureHow to create a django project procedure
How to create a django project procedure
deepalishinkar1
 
Virtual environment in python on windows / linux os
Virtual environment in python on windows / linux osVirtual environment in python on windows / linux os
Virtual environment in python on windows / linux os
deepalishinkar1
 
Data handling in python
Data handling in pythonData handling in python
Data handling in python
deepalishinkar1
 
Practical approach on numbers system and math module
Practical approach on numbers system and math modulePractical approach on numbers system and math module
Practical approach on numbers system and math module
deepalishinkar1
 
Demonstration on keyword
Demonstration on keywordDemonstration on keyword
Demonstration on keyword
deepalishinkar1
 
Numbers and math module
Numbers and math moduleNumbers and math module
Numbers and math module
deepalishinkar1
 
Basic concepts of python
Basic concepts of pythonBasic concepts of python
Basic concepts of python
deepalishinkar1
 
Introduction to python
Introduction to python Introduction to python
Introduction to python
deepalishinkar1
 
Set methods in python
Set methods in pythonSet methods in python
Set methods in python
deepalishinkar1
 
data structure stack appplication in python
data structure stack appplication in pythondata structure stack appplication in python
data structure stack appplication in python
deepalishinkar1
 
Stack application in infix to prefix expression
Stack application in infix to prefix expressionStack application in infix to prefix expression
Stack application in infix to prefix expression
deepalishinkar1
 
Data Structure Stack operation in python
Data Structure Stack operation in pythonData Structure Stack operation in python
Data Structure Stack operation in python
deepalishinkar1
 
steps for template in django for project
steps for template in django for projectsteps for template in django for project
steps for template in django for project
deepalishinkar1
 
Web application on menu card qrcode generator.pdf
Web application on menu card qrcode generator.pdfWeb application on menu card qrcode generator.pdf
Web application on menu card qrcode generator.pdf
deepalishinkar1
 
Django model create a table in django web framework
Django model create a table in django web frameworkDjango model create a table in django web framework
Django model create a table in django web framework
deepalishinkar1
 
TO DO APP USING STREAMLIT PYTHON PROJECT
TO DO APP USING STREAMLIT PYTHON PROJECTTO DO APP USING STREAMLIT PYTHON PROJECT
TO DO APP USING STREAMLIT PYTHON PROJECT
deepalishinkar1
 
basic concepts of object oriented in python
basic concepts of object oriented in pythonbasic concepts of object oriented in python
basic concepts of object oriented in python
deepalishinkar1
 
Inheritance and polymorphism oops concepts in python
Inheritance and polymorphism  oops concepts in pythonInheritance and polymorphism  oops concepts in python
Inheritance and polymorphism oops concepts in python
deepalishinkar1
 
DATABASE CONNECTIVITY PYTHON USING MYSQL/SQLITE/POSTGRE
DATABASE CONNECTIVITY PYTHON USING MYSQL/SQLITE/POSTGREDATABASE CONNECTIVITY PYTHON USING MYSQL/SQLITE/POSTGRE
DATABASE CONNECTIVITY PYTHON USING MYSQL/SQLITE/POSTGRE
deepalishinkar1
 
File Operations in python Read ,Write,binary file etc.
File Operations in python Read ,Write,binary file etc.File Operations in python Read ,Write,binary file etc.
File Operations in python Read ,Write,binary file etc.
deepalishinkar1
 
How to create a django project procedure
How to create a django project procedureHow to create a django project procedure
How to create a django project procedure
deepalishinkar1
 
Virtual environment in python on windows / linux os
Virtual environment in python on windows / linux osVirtual environment in python on windows / linux os
Virtual environment in python on windows / linux os
deepalishinkar1
 
Practical approach on numbers system and math module
Practical approach on numbers system and math modulePractical approach on numbers system and math module
Practical approach on numbers system and math module
deepalishinkar1
 
Demonstration on keyword
Demonstration on keywordDemonstration on keyword
Demonstration on keyword
deepalishinkar1
 
Basic concepts of python
Basic concepts of pythonBasic concepts of python
Basic concepts of python
deepalishinkar1
 
Ad

Recently uploaded (20)

电子版成绩单英国UofG文凭格拉斯哥大学学生证学历认证范本购买
电子版成绩单英国UofG文凭格拉斯哥大学学生证学历认证范本购买电子版成绩单英国UofG文凭格拉斯哥大学学生证学历认证范本购买
电子版成绩单英国UofG文凭格拉斯哥大学学生证学历认证范本购买
Taqyea
 
Productivity starts in our mind - Dev productivity meetup
Productivity starts in our mind - Dev productivity meetupProductivity starts in our mind - Dev productivity meetup
Productivity starts in our mind - Dev productivity meetup
Grzegorz Miejski
 
Microsoft 365 Copilot - Vanderbilt University
Microsoft 365 Copilot - Vanderbilt UniversityMicrosoft 365 Copilot - Vanderbilt University
Microsoft 365 Copilot - Vanderbilt University
Neil Beyersdorf - MSES | CLSSMBB | Prosci OCM
 
Engineering-Excellence-Top-BEBTech-Colleges-in-Delhi-2025 (1).pptx
Engineering-Excellence-Top-BEBTech-Colleges-in-Delhi-2025 (1).pptxEngineering-Excellence-Top-BEBTech-Colleges-in-Delhi-2025 (1).pptx
Engineering-Excellence-Top-BEBTech-Colleges-in-Delhi-2025 (1).pptx
shilpijain263
 
Human.pptx and the life of humans in this world
Human.pptx and the life of humans in this worldHuman.pptx and the life of humans in this world
Human.pptx and the life of humans in this world
khadoshah18
 
essentialsoffreightforwarding-240429141915-bccde661 5.9.pptx
essentialsoffreightforwarding-240429141915-bccde661 5.9.pptxessentialsoffreightforwarding-240429141915-bccde661 5.9.pptx
essentialsoffreightforwarding-240429141915-bccde661 5.9.pptx
Sheldon Byron
 
Human Behavior in an OrganizatioN POWER AND POLITICS
Human Behavior in an OrganizatioN POWER AND POLITICSHuman Behavior in an OrganizatioN POWER AND POLITICS
Human Behavior in an OrganizatioN POWER AND POLITICS
monaliz4mirandaa
 
NSS Quiz for vtu students in 2022 scheme
NSS Quiz for vtu students in 2022 schemeNSS Quiz for vtu students in 2022 scheme
NSS Quiz for vtu students in 2022 scheme
madhushreer21
 
Juniper JN0-224 Certification Preparation Guide with Sample Questions.pdf
Juniper JN0-224 Certification Preparation Guide with Sample Questions.pdfJuniper JN0-224 Certification Preparation Guide with Sample Questions.pdf
Juniper JN0-224 Certification Preparation Guide with Sample Questions.pdf
sabrina pinto
 
Power BI Jobs in Jaipur – Top Career Options in Data Analytics.pdf
Power BI Jobs in Jaipur – Top Career Options in Data Analytics.pdfPower BI Jobs in Jaipur – Top Career Options in Data Analytics.pdf
Power BI Jobs in Jaipur – Top Career Options in Data Analytics.pdf
vinay salarite
 
LBE Presentation on Business Communication
LBE Presentation on Business CommunicationLBE Presentation on Business Communication
LBE Presentation on Business Communication
komal691665
 
Infection Control for BSc Nursing,gnm,pbbsc___.pptx
Infection Control for BSc Nursing,gnm,pbbsc___.pptxInfection Control for BSc Nursing,gnm,pbbsc___.pptx
Infection Control for BSc Nursing,gnm,pbbsc___.pptx
Bishnupriyabindhani
 
The Guide to a Winning Interview May 2025
The Guide to a Winning Interview May 2025The Guide to a Winning Interview May 2025
The Guide to a Winning Interview May 2025
Bruce Bennett
 
International Organizations in Globalization by Slidesgo (1).pptx
International Organizations in Globalization by Slidesgo (1).pptxInternational Organizations in Globalization by Slidesgo (1).pptx
International Organizations in Globalization by Slidesgo (1).pptx
samanwaralakhly
 
Expository data analysis aand visualization-1.pdf
Expository data analysis aand visualization-1.pdfExpository data analysis aand visualization-1.pdf
Expository data analysis aand visualization-1.pdf
PrinceUzair4
 
Import images and the long run is not aa
Import images and the long run is not aaImport images and the long run is not aa
Import images and the long run is not aa
PurvaAdhangale
 
美国内布拉斯加大学科尼分校硕士毕业证学生卡(UNK官方成绩单)
美国内布拉斯加大学科尼分校硕士毕业证学生卡(UNK官方成绩单)美国内布拉斯加大学科尼分校硕士毕业证学生卡(UNK官方成绩单)
美国内布拉斯加大学科尼分校硕士毕业证学生卡(UNK官方成绩单)
Taqyea
 
technical seminar Tharun.pptm.pptx by vtu students
technical seminar Tharun.pptm.pptx by vtu studentstechnical seminar Tharun.pptm.pptx by vtu students
technical seminar Tharun.pptm.pptx by vtu students
madhushreer21
 
Power BI Jobs in Jaipur – Top Career Options in Data Analytics.pptx
Power BI Jobs in Jaipur – Top Career Options in Data Analytics.pptxPower BI Jobs in Jaipur – Top Career Options in Data Analytics.pptx
Power BI Jobs in Jaipur – Top Career Options in Data Analytics.pptx
vinay salarite
 
Welder skill development course and .pptx
Welder skill development course and .pptxWelder skill development course and .pptx
Welder skill development course and .pptx
satishkumar511772
 
电子版成绩单英国UofG文凭格拉斯哥大学学生证学历认证范本购买
电子版成绩单英国UofG文凭格拉斯哥大学学生证学历认证范本购买电子版成绩单英国UofG文凭格拉斯哥大学学生证学历认证范本购买
电子版成绩单英国UofG文凭格拉斯哥大学学生证学历认证范本购买
Taqyea
 
Productivity starts in our mind - Dev productivity meetup
Productivity starts in our mind - Dev productivity meetupProductivity starts in our mind - Dev productivity meetup
Productivity starts in our mind - Dev productivity meetup
Grzegorz Miejski
 
Engineering-Excellence-Top-BEBTech-Colleges-in-Delhi-2025 (1).pptx
Engineering-Excellence-Top-BEBTech-Colleges-in-Delhi-2025 (1).pptxEngineering-Excellence-Top-BEBTech-Colleges-in-Delhi-2025 (1).pptx
Engineering-Excellence-Top-BEBTech-Colleges-in-Delhi-2025 (1).pptx
shilpijain263
 
Human.pptx and the life of humans in this world
Human.pptx and the life of humans in this worldHuman.pptx and the life of humans in this world
Human.pptx and the life of humans in this world
khadoshah18
 
essentialsoffreightforwarding-240429141915-bccde661 5.9.pptx
essentialsoffreightforwarding-240429141915-bccde661 5.9.pptxessentialsoffreightforwarding-240429141915-bccde661 5.9.pptx
essentialsoffreightforwarding-240429141915-bccde661 5.9.pptx
Sheldon Byron
 
Human Behavior in an OrganizatioN POWER AND POLITICS
Human Behavior in an OrganizatioN POWER AND POLITICSHuman Behavior in an OrganizatioN POWER AND POLITICS
Human Behavior in an OrganizatioN POWER AND POLITICS
monaliz4mirandaa
 
NSS Quiz for vtu students in 2022 scheme
NSS Quiz for vtu students in 2022 schemeNSS Quiz for vtu students in 2022 scheme
NSS Quiz for vtu students in 2022 scheme
madhushreer21
 
Juniper JN0-224 Certification Preparation Guide with Sample Questions.pdf
Juniper JN0-224 Certification Preparation Guide with Sample Questions.pdfJuniper JN0-224 Certification Preparation Guide with Sample Questions.pdf
Juniper JN0-224 Certification Preparation Guide with Sample Questions.pdf
sabrina pinto
 
Power BI Jobs in Jaipur – Top Career Options in Data Analytics.pdf
Power BI Jobs in Jaipur – Top Career Options in Data Analytics.pdfPower BI Jobs in Jaipur – Top Career Options in Data Analytics.pdf
Power BI Jobs in Jaipur – Top Career Options in Data Analytics.pdf
vinay salarite
 
LBE Presentation on Business Communication
LBE Presentation on Business CommunicationLBE Presentation on Business Communication
LBE Presentation on Business Communication
komal691665
 
Infection Control for BSc Nursing,gnm,pbbsc___.pptx
Infection Control for BSc Nursing,gnm,pbbsc___.pptxInfection Control for BSc Nursing,gnm,pbbsc___.pptx
Infection Control for BSc Nursing,gnm,pbbsc___.pptx
Bishnupriyabindhani
 
The Guide to a Winning Interview May 2025
The Guide to a Winning Interview May 2025The Guide to a Winning Interview May 2025
The Guide to a Winning Interview May 2025
Bruce Bennett
 
International Organizations in Globalization by Slidesgo (1).pptx
International Organizations in Globalization by Slidesgo (1).pptxInternational Organizations in Globalization by Slidesgo (1).pptx
International Organizations in Globalization by Slidesgo (1).pptx
samanwaralakhly
 
Expository data analysis aand visualization-1.pdf
Expository data analysis aand visualization-1.pdfExpository data analysis aand visualization-1.pdf
Expository data analysis aand visualization-1.pdf
PrinceUzair4
 
Import images and the long run is not aa
Import images and the long run is not aaImport images and the long run is not aa
Import images and the long run is not aa
PurvaAdhangale
 
美国内布拉斯加大学科尼分校硕士毕业证学生卡(UNK官方成绩单)
美国内布拉斯加大学科尼分校硕士毕业证学生卡(UNK官方成绩单)美国内布拉斯加大学科尼分校硕士毕业证学生卡(UNK官方成绩单)
美国内布拉斯加大学科尼分校硕士毕业证学生卡(UNK官方成绩单)
Taqyea
 
technical seminar Tharun.pptm.pptx by vtu students
technical seminar Tharun.pptm.pptx by vtu studentstechnical seminar Tharun.pptm.pptx by vtu students
technical seminar Tharun.pptm.pptx by vtu students
madhushreer21
 
Power BI Jobs in Jaipur – Top Career Options in Data Analytics.pptx
Power BI Jobs in Jaipur – Top Career Options in Data Analytics.pptxPower BI Jobs in Jaipur – Top Career Options in Data Analytics.pptx
Power BI Jobs in Jaipur – Top Career Options in Data Analytics.pptx
vinay salarite
 
Welder skill development course and .pptx
Welder skill development course and .pptxWelder skill development course and .pptx
Welder skill development course and .pptx
satishkumar511772
 

Operators in python

  • 2. OPERATORS IN PYTHON 10/11/2021 OPEARATORS IN PYTHON 2 Arithmetic Operators Relational Operators Logical Operators Bitwise Operator Assignment Operator Special Operator
  • 3. ARITHMETIC OPERATORS IN PYTHON Arithmetic operators are used to perform mathematical operations like addition, subtraction, multiplication, etc. 10/11/2021 OPEARATORS IN PYTHON 3 Operator Description Syntax + Add two operands or unary plus x+y+2 - Subtract right operand from the left or unary minus x-y-2 * Multiply two operands x*y ** Exponent - left operand raised to the power of right x**y / Divide left operand by the right one (always results into float) x/y // Floor division - division that results into whole number adjusted to the left in the number line x//y % Modulus - remainder of the division of left operand by the right x%y
  • 4. ARITHMETIC OPERATORS IN PYTHON Practical approach : Arithmetic operators execution with output 10/11/2021 OPEARATORS IN PYTHON 4
  • 5. COMPARISION OPERATORS IN PYTHON Comparison operators are used to compare values. It returns either True or False according to the condition. 10/11/2021 OPEARATORS IN PYTHON 5 Operator Description Syntax > Greater than - True if left operand is greater than the right x>y < Less than - True if left operand is less than the right y<x == Equal to - True if both operands are equal x==y != Not equal to - True if operands are not equal x!=y >= Greater than or equal to - True if left operand is greater than or equal to the right x>=y <= Less than or equal to - True if left operand is less than or equal to the right x<=y
  • 6. COMPARISION OPERATORS IN PYTHON Practical approach : Comparision operators execution with output 10/11/2021 OPEARATORS IN PYTHON 6
  • 7. BITWISE OPERATORS IN PYTHON Bitwise operators act on operands as if they were strings of binary digits. They operate bit by bit, hence the. 10/11/2021 OPEARATORS IN PYTHON 7 Operator Description Syntax & Bitwise and x & y | Bitwise or x|y ~ Bitwise not ~x ^ Bitwise XOR x ^ y >> Bitwise right shift x>>y << Bitwise left shift x<<y
  • 8. Truth Table AND OR Ex-OR A B A &B 0 0 0 0 1 0 1 0 0 1 1 1 A B A |B 0 0 0 0 1 1 1 0 1 1 1 1 A B A |B 0 0 0 0 1 1 1 0 1 1 1 0
  • 11. Not operator Bitwise (Not) one's compliment operator will invert the binary bits. If a bit is 1, it will change it to 0. If the bit is 0, it will change it to 1. The ones' complement binary numeral system is characterized by the bit complement of any integer value being the arithmetic negative of the value.
  • 12. BITWISE OPERATORS IN PYTHON Practical approach : Bitwise operators execution with output 10/11/2021 OPEARATORS IN PYTHON 12
  • 13. LOGICAL OPERATORS IN PYTHON Logical operators are and,or & not operators. It returns either True or False according to the operator. Practical approach : Comparision operators execution with output 10/11/2021 OPEARATORS IN PYTHON 13 Operator Description Syntax and True if both the operands are true x and y or True if either of the operands is true x or y not True if operand is false (complements the operand) x not y
  • 14. ASSIGNMENT OPERATORS IN PYTHON Assignment operators are used to assign values to variables. There are various compound operators in Python like a+=5 that adds to the variable and later assigns the same. It is equivalent to a=a+5 10/11/2021 OPEARATORS IN PYTHON 14 Operator Example Equivalent to = x=7 x=7 += x+=7 x=x+7 -= x-=7 x=x-7 *= x*=7 x=x*7 /= x/=7 x=x/7 //= x//=7 x=x//7 %= x%=7 x=x%7 **= x**=7 x=x**7 &= x&=7 x=x&7 |= x|=7 x=x|7 ^= x^=7 x=x^7 >>= x>>=7 x=x>>7 <<= x<<=7 x<<7
  • 15. Special Operators Identity operator is and is not are the identity operators in Python. They are used to check if two values (or variables) are located on the same part of the memory. Membership Operator in and not in are the membership operators in Python. They are used to test whether a value or variable is found in a sequence (string,list,tuple,set and dictionary)
  • 16. Difference between is and == operator The is keyword is used to test if two variables refer to the same object. The test returns True if the two objects are the same object. The test returns False if they are not the same object, even if the two objects are 100% equal. Use the == operator to test if two variables are equal.
  • 17. SPECIAL OPERATORS IN PYTHON Practical approach : special operators execution with output 10/11/2021 OPEARATORS IN PYTHON 17
  • 18. Python Operator Precedence Precedence Operator Sign Operator Name Highest () Parentheses ** Exponent +x,-x,~x Unary plus, Unary minus, Bitwise NOT *,/,//,% Multiplication, Division, Floor division, Modulus +,- Addition, Subtraction <<,>> Bitwise shift operator & Bitwise AND ^ Bitwise XOR | Bitwise OR Lowest ==,!=,>,>=,<,<=,is,is not,in,not in Comparision,Ident ity ,Membership operators
  翻译: