Computer Science Related Others Courses AvailableThe Best Codder.blogspot.com

Associativity

1 min read

 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.

OperatorDescription  Associativity
( )Parentheses  left-to-right
**Exponent right-to-left
*  /  %Multiplication/division/modulusleft-to-right
+  –Addition/subtractionleft-to-right
<<  >>Bitwise shift left, Bitwise shift rightleft-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 toleft-to-right

is,  is not

in, not in

Identity

Membership operators

left-to-right
&Bitwise ANDleft-to-right
^Bitwise exclusive ORleft-to-right
|Bitwise inclusive ORleft-to-right
notLogical NOTright-to-left
andLogical ANDleft-to-right
orLogical ORleft-to-right

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

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

Code:

# Left-right associativity
# 100 / 10 * 10 is calculated as 
# (100 / 10) * 10 and not 
# as 100 / (10 * 10)
print(100 / 10 * 10)
  
# Left-right associativity
# 5 - 2 + 3 is calculated as 
# (5 - 2) + 3 and not 
# as 5 - (2 + 3)
print(5 - 2 + 3)
  
# left-right associativity
print(5 - (2 + 3))
  
# right-left associativity
# 2 ** 3 ** 2 is calculated as 
# 2 ** (3 ** 2) and not 
# as (2 ** 3) ** 2
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

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

Code:

expression  = 100 + 200 / 10 - 3 * 10
print(expression )

Output:

90.0



You may like these posts

  •  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&n…

Post a Comment

© 2025Python . The Best Codder All rights reserved. Distributed by