EN
Python - arithmetic operators
0
points
In this article, we would like to show you arithmetic operators in Python.
Arithmetic operators
Operator | Example | Name |
---|---|---|
+ | a + b | addition |
- | a - b | subtraction |
* | a * b | multiplication |
/ | a / b | division |
% | a % b | modulus |
** | a ** b | exponentiation |
// | a // b | floor division |
Practical example
a = 3
b = 2
# results
print(a + b) # 5
print(a - b) # 1
print(a * b) # 6
print(a / b) # 1.5
print(a % b) # 1
print(a ** b) # 9
print(a // b) # 1
Output:
5
1
6
1.5
1
9
1