5/26/25, 8:04 AM Python Operators
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 Get your own Python Server
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
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 »
https://www.w3schools.com/python/python_operators.asp 1/2
5/26/25, 8:04 AM Python Operators
** Exponentiation x ** y Try it »
// Floor division x // y Try it »
ADVERTISEMENT
Python Assignment Operators
https://www.w3schools.com/python/python_operators.asp 2/2