5/18/22, 2:19 PM Python Operators
Menu Log in
Dark mode
Dark code
HTML CSS
Python Operators
❮ Previous Next ❯
Python Operators
Operators are used to perform operations on variables and values.
In the example below, we use the + operator to add together two values:
Example
print(10 + 5)
Run example »
Python divides the operators in the following groups:
Arithmetic operators
Assignment operators
Comparison operators
Logical operators
Identity operators
Membership operators
Bitwise operators
https://www.w3schools.com/python/python_operators.asp 1/9
5/18/22, 2:19 PM Python Operators
Python Arithmetic Operators
Arithmetic operators are used with numeric values to perform common mathematical
operations:
Operator Name Example Try it
+ Addition x+y Try it »
- Subtraction x-y Try it »
* Multiplication x*y Try it »
/ Division x/y Try it »
% Modulus x%y Try it »
** Exponentiation x ** y Try it »
// Floor division x // y Try it »
Python Assignment Operators
Assignment operators are used to assign values to variables:
Operator Example Same As Try it
= x=5 x=5 Try it »
+= x += 3 x=x+3 Try it »
-= x -= 3 x=x-3 Try it »
*= x *= 3 x=x*3 Try it »
/= x /= 3 x=x/3 Try it »
%= x %= 3 x=x%3 Try it »
//= x //= 3 x = x // 3 Try it »
https://www.w3schools.com/python/python_operators.asp 2/9
5/18/22, 2:19 PM Python Operators
**= x **= 3 x = x ** 3 Try it »
&= x &= 3 x=x&3 Try it »
|= x |= 3 x=x|3 Try it »
^= x ^= 3 x=x^3 Try it »
>>= x >>= 3 x = x >> 3 Try it »
<<= x <<= 3 x = x << 3 Try it »
Python Comparison Operators
Comparison operators are used to compare two values:
Operator Name Example Try it
== Equal x == y Try it »
!= Not equal x != y Try it »
> Greater than x>y Try it »
< Less than x<y Try it »
>= Greater than or equal to x >= y Try it »
<= Less than or equal to x <= y Try it »
Python Logical Operators
Logical operators are used to combine conditional statements:
Operator Description Example Try it
and Returns True if both x < 5 and x < 10
https://www.w3schools.com/python/python_operators.asp 3/9
5/18/22, 2:19 PM Python Operators
statements are true Try it »
or Returns True if one of the x < 5 or x < 4 Try it »
statements is true
not Reverse the result, returns not(x < 5 and x < 10) Try it »
False if the result is true
Python Identity Operators
Identity operators are used to compare the objects, not if they are equal, but if they are
actually the same object, with the same memory location:
Operator Description Example Try it
is Returns True if both x is y Try it »
variables are the same
object
is not Returns True if both x is not y Try it »
variables are not the same
object
Python Membership Operators
Membership operators are used to test if a sequence is presented in an object:
Operator Description Example Try it
in Returns True if a sequence x in y Try it »
with the specified value is
present in the object
not in Returns True if a sequence x not in y Try it »
with the specified value is
not present in the object
https://www.w3schools.com/python/python_operators.asp 4/9
5/18/22, 2:19 PM Python Operators
Python Bitwise Operators
Bitwise operators are used to compare (binary) numbers:
Operator Name Description
& AND Sets each bit to 1 if both bits are 1
| OR Sets each bit to 1 if one of two bits is 1
^ XOR Sets each bit to 1 if only one of two bits is 1
~ NOT Inverts all the bits
<< Zero fill Shift left by pushing zeros in from the right and let the
left shift leftmost bits fall off
>> Signed Shift right by pushing copies of the leftmost bit in from the
right shift left, and let the rightmost bits fall off
Test Yourself With Exercises
Exercise:
Multiply 10 with 5 , and print the result.
print(10 5)
Submit Answer »
Start the Exercise
https://www.w3schools.com/python/python_operators.asp 5/9
5/18/22, 2:19 PM Python Operators
❮ Previous Next ❯
NEW
We just launched
W3Schools videos
Explore now
COLOR PICKER
Get certified
by completing
a course today!
https://www.w3schools.com/python/python_operators.asp 6/9
5/18/22, 2:19 PM Python Operators
school
w3 s
2
CE
02
TI 2
R
FI .
ED
Get started
CODE GAME
Play Game
Report Error
Forum
About
Shop
https://www.w3schools.com/python/python_operators.asp 7/9
5/18/22, 2:19 PM Python Operators
Top Tutorials
HTML Tutorial
CSS Tutorial
JavaScript Tutorial
How To Tutorial
SQL Tutorial
Python Tutorial
W3.CSS Tutorial
Bootstrap Tutorial
PHP Tutorial
Java Tutorial
C++ Tutorial
jQuery Tutorial
Top References
HTML Reference
CSS Reference
JavaScript Reference
SQL Reference
Python Reference
W3.CSS Reference
Bootstrap Reference
PHP Reference
HTML Colors
Java Reference
Angular Reference
jQuery Reference
Top Examples
HTML Examples
CSS Examples
JavaScript Examples
How To Examples
SQL Examples
Python Examples
W3.CSS Examples
Bootstrap Examples
PHP Examples
Java Examples
XML Examples
jQuery Examples
Web Courses
HTML Course
CSS Course
JavaScript Course
Front End Course
SQL Course
Python Course
PHP Course
jQuery Course
https://www.w3schools.com/python/python_operators.asp 8/9
5/18/22, 2:19 PM Python Operators
Java Course
C++ Course
C# Course
XML Course
Get Certified »
W3Schools is optimized for learning and training. Examples might be simplified to improve reading and
learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant
full correctness of all content.
While using W3Schools, you agree to have read and accepted our terms of use,
cookie and privacy policy.
Copyright 1999-2022 by Refsnes Data. All Rights Reserved.
W3Schools is Powered by W3.CSS.
https://www.w3schools.com/python/python_operators.asp 9/9