Languages
[Edit]
EN

Python - arithmetic operators

0 points
Created by:
Dale-K1
387

In this article, we would like to show you arithmetic operators in Python.

Arithmetic operators

OperatorExampleName
+a + baddition
-a - bsubtraction
*a * bmultiplication
/a / bdivision
%a % bmodulus
**a ** bexponentiation
//a // bfloor 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
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Python - fundamentals

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join