Python Tutorial

What Are Operators in Python? What Are Different Types of Python Operators

What are Python Operators?

Operators are symbols in Python that conduct arithmetic & logical calculations. The value on which the operator works is known as the operand.

For example:

9+3
12

Here, + is the operator that performs addition. 9 and 3 are the operands and 12 is the output of the operation.

Did you find this article helpful?