Intro to Operators#

Operators are special symbols that perform arithmetic, comparison, assignment, logical, and other operations with Python variables.

Below are Python operators:

  • Arithmetic

  • Assignment

  • Comparison

  • Logical

There are also Bitwise Operators and special operators, and you can search about the documentation for these operations. We will discuss the details and examples of each operation.