VertitimeX Technologies

Python Operators.

  • Python operators are special symbols or keywords used to perform operations on variables and values.
  • These operators allow for various functionalities, from basic arithmetic operations like addition, subtraction, multiplication, and division to more complex comparisons and logical operations.
  • List of Operators -
    Arithmetic (+, -, *, /, //, %, **)
    Comparison (==, !=, >, <,>=, <=)
    Logical (and, or, not)
    Assignment (=, +=, -=, *=, /=, //=, %=, **=)
    Bitwise (&, |, ^, ~, <<,>>)
    Membership (in, not in)
    Identity (is, is not)