What is meant by operator precedence and associativity in python?

View Discussion

Improve Article

Save Article

  • Read
  • Discuss
  • View Discussion

    Improve Article

    Save Article

    When dealing with operators in Python we have to know about the concept of Python operator precedence and associativity as these determine the priorities of the operator otherwise, we’ll see unexpected outputs.

    Operator Precedence: This is used in an expression with more than one operator with different precedence to determine which operation to perform first.

    Example: Solve 

    10 + 20 * 30
    

    What is meant by operator precedence and associativity in python?

    10 + 20 * 30 is calculated as 10 + (20 * 30)
    and not as (10 + 20) * 30
    

    Code:

    Python3

    expr = 10 + 20 * 30

    print(expr)

    Output:

    610
    

    Example: Now, let’s see an example on logicalor‘ & logical and‘  operator.  ‘if‘ block is executed even if the age is 0. Because precedence of logical ‘and‘ is greater than the logical ‘or‘.

    Python3

    name = "Alex"

    age = 0

    if name == "Alex" or name == "John" and age >= 2 :

        print("Hello! Welcome.")

    else :

        print("Good Bye!!")

    Output:

    Hello! Welcome.
    

    Hence, To run the ‘else‘ block we can use parenthesis( ) as their precedence is highest among all the operators.

    Python3

    name = "Alex"

    age = 0

    if ( name == "Alex" or name == "John" ) and age >= 2 :

      print("Hello! Welcome.")

    else :

      print("Good Bye!!")

    Output:

    Good Bye!!
    

    Operator Associativity: If an expression contains two or more operators with the same precedence then Operator Associativity is used to determine. It can either be Left to Right or from Right to Left.

    Example: ‘*’ and ‘/’ have the same precedence and their associativity is Left to Right, so the expression “100 / 10 * 10” is treated as “(100 / 10) * 10”.

    What is meant by operator precedence and associativity in python?

    Code:

    Python3

    print(100 / 10 * 10)

    print(5 - 2 + 3)

    print(5 - (2 + 3))

    print(2 ** 3 ** 2)

    Output:

    100
    6
    0
    512
    

    Operators Precedence and Associativity are two main characteristics of operators that determine the evaluation order of sub-expressions in absence of brackets.

    Example: Solve 

    100 + 200 / 10 - 3 * 10
    

    What is meant by operator precedence and associativity in python?

    100 + 200 / 10 - 3 * 10 is calculated as 100 + (200 / 10) - (3 * 10)
    and not as (100 + 200) / (10 - 3) * 10
    

    Code:

    Python3

    expression  = 100 + 200 / 10 - 3 * 10

    print(expression )

    Output:

    90.0
    

    Please see the following precedence and associativity table for reference. This table lists all operators from the highest precedence to the lowest precedence.

    OperatorDescription  Associativity
    ( ) Parentheses   left-to-right
    ** Exponent  right-to-left
    *  /  % Multiplication/division/modulus left-to-right
    +  – Addition/subtraction left-to-right
    <<  >> Bitwise shift left, Bitwise shift right left-to-right
    <  <= 
    >  >=
    Relational less than/less than or equal to 
    Relational greater than/greater  than or equal to
    left-to-right
    ==  != Relational is equal to/is not equal to left-to-right

    is,  is not

    in, not in

    Identity

    Membership operators

    left-to-right
    & Bitwise AND left-to-right
    ^ Bitwise exclusive OR left-to-right
    | Bitwise inclusive OR left-to-right
    not Logical NOT right-to-left
    and Logical AND left-to-right
    or Logical OR left-to-right

    +=  -= 
    *=  /= 
    %=  &= 
    ^=  |= 
    <<=  >>=
    Assignment 
    Addition/subtraction assignment 
    Multiplication/division assignment 
    Modulus/bitwise AND assignment 
    Bitwise exclusive/inclusive OR assignment 
    Bitwise shift left/right assignment
    right-to-left

    What is meant by operator precedence in Python?

    Operator precedence in Python simply refers to the order of operations. Operators are used to perform operations on variables and values. Python classifies its operators in the following groups: Arithmetic operators. Assignment operators.

    What is meant by operator precedence and associativity?

    Two operator characteristics determine how operands group with operators: precedence and associativity. Precedence is the priority for grouping different types of operators with their operands. Associativity is the left-to-right or right-to-left order for grouping operands to operators that have the same precedence.

    What is meant by operator precedence?

    Operator Precedence ¶ The precedence of an operator specifies how "tightly" it binds two expressions together. For example, in the expression 1 + 5 * 3 , the answer is 16 and not 18 because the multiplication ("*") operator has a higher precedence than the addition ("+") operator.

    Which operator is right associative in Python?

    Python Operator Associativity.