Operator

An operator performs actions on elements such as variables.

Python Example

Python operators are defined here.

# Some operator use examples.
a + b
a / b
- a
a * b
a > b

# Use an operator module function to perform a multiplication.
import operator
operator.mul(2, 3)

References