Operators are special symbols in Python that carry out arithmetic or logical computation. They are applied on operand(s), which can be values or variables. Value and variables when used with operator are known as operands. Same operators can behave differently on different data types. Operators are categorized as Arithmetic, Relational, Logical and Assignment.

print(200/2)
#This operation will divide 200 by 2

In the above code block the operator is the divide symbol /.

Types of Operators

Arithmetic operators

Arithmetic operators are used to perform numerical and mathematical operations.

Arithmetic Operators