Operators are used to perform operations on variables and values.
There are different types of operators:
Arithmetic --> +, -, *, /, //, %, **
Relational / Comparison --> = =,! =, >, <, > =, < =
Assignment --> =, +=, -=, *=, /=
Logical --> and, or, notexample
sum = a + bsum = a + b
| | |
| | └── operand
| └──── operator (+)
└────────── assignment operator (=)