Arithmetic Operators in Python
Arithmetic means:
Basic maths operations (like addition, subtraction, multiplication, division)
In Python, these are the Arithmetic Operators:
OperatorWork (Meaning)Example
+Addition5 + 3 = 8
-Subtraction5 - 3 = 2
*Multiplication5 * 3 = 15...
safiakhatoon.hashnode.dev2 min read