1
374views
Explain the arithmetic and logical operators in python.
1 Answer
2
3views


Arithmetic Operators in Python :-

Operator Name Example
+ Addition a + b
- Subtraction a - b
* Multiplication a * b
/ Division a / b
% Modulus a % b
** Exponentiation a ** b
// Floor Division a // b



Logical Operators in Python :-

Operator …

Create a free account to keep reading this post.

and 5 others joined a min ago.

Please log in to add an answer.